This commit is contained in:
Bryan Ramos 2023-04-21 18:40:42 -04:00
parent fc14d227e9
commit 32be3a3319
2 changed files with 6 additions and 5 deletions

View file

@ -53,10 +53,12 @@
}, },
configs = { configs = {
tsserver = { cmd = { "tsserver", "--stdio" } }, -- tsserver = { cmd = { "tsserver", "--stdio" } },
pyright = { cmd = { "pyright-langserver", "--stdio" } }, -- pyright = { cmd = { "pyright-langserver", "--stdio" } },
lua_ls = { cmd = { "lua-language-server" } }, lua_ls = {
rnix = { cmd = { "rnix-lsp" } }, settings = { Lua = { diagnostics = { globals = { "vim" }}}},
cmd = { "lua-language-server" } },
-- rnix = { cmd = { "rnix-lsp" } },
}, },
} }

View file

@ -93,7 +93,6 @@ return packer.startup(function(use)
-- LSP Config -- LSP Config
use 'neovim/nvim-lspconfig' use 'neovim/nvim-lspconfig'
use 'kabouzeid/nvim-lspinstall'
use { 'dundalek/lazy-lsp.nvim', use { 'dundalek/lazy-lsp.nvim',
requires = { 'neovim/nvim-lspconfig' } requires = { 'neovim/nvim-lspconfig' }
} }