FEAT: fish nvim
This commit is contained in:
parent
b47bc91789
commit
bfea58ffdb
3 changed files with 19 additions and 7 deletions
|
@ -5,5 +5,12 @@ if status is-interactive
|
||||||
starship init fish | source
|
starship init fish | source
|
||||||
end
|
end
|
||||||
|
|
||||||
# Created by `pipx` on 2023-11-04 13:29:11
|
# XDG
|
||||||
set PATH $PATH /home/ale/.local/bin
|
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
|
||||||
|
|
||||||
|
|
|
@ -35,11 +35,14 @@ plugins = {
|
||||||
{
|
{
|
||||||
'neovim/nvim-lspconfig',
|
'neovim/nvim-lspconfig',
|
||||||
config = function()
|
config = function()
|
||||||
local configs = require('lspconfig')
|
local lsp = require('lspconfig')
|
||||||
configs.lua_ls.setup{}
|
lsp.lua_ls.setup{}
|
||||||
configs.pyright.setup{}
|
lsp.pyright.setup{}
|
||||||
configs.tsserver.setup{}
|
lsp.tsserver.setup{}
|
||||||
configs.html.setup{}
|
lsp.html.setup{}
|
||||||
|
lsp.cssls.setup{}
|
||||||
|
lsp.cssmodules_ls.setup{}
|
||||||
|
lsp.astro.setup{}
|
||||||
end
|
end
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
|
@ -3,3 +3,5 @@
|
||||||
* requirements
|
* requirements
|
||||||
> base-devel, npm, pip, wl-clipboard
|
> base-devel, npm, pip, wl-clipboard
|
||||||
|
|
||||||
|
* lsp requirements
|
||||||
|
> astro-language-server, cssmodules-language-server, css-lsp, html-lsp, typescript-language-server, pyright
|
||||||
|
|
Loading…
Reference in a new issue