Reconfigure lsp

This commit is contained in:
Marcelo Canaparro 2024-01-06 14:58:15 +00:00
parent 84bd738041
commit 0ebf26b49c
6 changed files with 204 additions and 168 deletions

View file

@ -0,0 +1,23 @@
return {
{
"williamboman/mason.nvim",
config = function ()
require('mason').setup()
end
},
{
'williamboman/mason-lspconfig.nvim',
config = function()
require("mason-lspconfig").setup {
ensure_installed = { "lua_ls", "pyright" },
}
end
},
{
"neovim/nvim-lspconfig",
config = function()
local lspconfig = require('lspconfig')
lspconfig.lua_ls.setup({})
end
}
}

View file

@ -3,7 +3,6 @@
--
-- See the kickstart.nvim README for more information
return {
{
"nvim-neo-tree/neo-tree.nvim",
branch = "v3.x",