FEAT: fish nvim

This commit is contained in:
Ale 2023-12-12 23:17:23 +01:00
parent b47bc91789
commit bfea58ffdb
3 changed files with 19 additions and 7 deletions

View file

@ -5,5 +5,12 @@ if status is-interactive
starship init fish | source
end
# Created by `pipx` on 2023-11-04 13:29:11
set PATH $PATH /home/ale/.local/bin
# XDG
set -x XDG_CONFIG_HOME "$HOME/.config"
# bun
set -x BUN_INSTALL "$HOME/.local/bun"
# path
set -x PATH $HOME/.local/bin $BUN_INSTALL/bin $PATH

View file

@ -35,11 +35,14 @@ plugins = {
{
'neovim/nvim-lspconfig',
config = function()
local configs = require('lspconfig')
configs.lua_ls.setup{}
configs.pyright.setup{}
configs.tsserver.setup{}
configs.html.setup{}
local lsp = require('lspconfig')
lsp.lua_ls.setup{}
lsp.pyright.setup{}
lsp.tsserver.setup{}
lsp.html.setup{}
lsp.cssls.setup{}
lsp.cssmodules_ls.setup{}
lsp.astro.setup{}
end
},
{

View file

@ -3,3 +3,5 @@
* requirements
> base-devel, npm, pip, wl-clipboard
* lsp requirements
> astro-language-server, cssmodules-language-server, css-lsp, html-lsp, typescript-language-server, pyright