18 lines
299 B
Lua
18 lines
299 B
Lua
return {
|
|
'neovim/nvim-lspconfig',
|
|
event = {
|
|
'BufReadPre',
|
|
'BufNewFile',
|
|
},
|
|
config = function()
|
|
local lspconfig = require('lspconfig')
|
|
|
|
lspconfig.pyright.setup {}
|
|
lspconfig.tsserver.setup {}
|
|
lspconfig.rust_analyzer.setup {
|
|
settings = {
|
|
['rust-analyzer'] = {},
|
|
},
|
|
}
|
|
end
|
|
}
|