pyright 추가 및 사용 안하는 react extension 제거

This commit is contained in:
bumpsoo 2024-07-01 02:18:45 +09:00
parent caa80efe24
commit 98c6b1d2ea

View file

@ -15,7 +15,7 @@ local config = function()
end
-- Enable some language servers with the additional
-- completion capabilities offered by nvim-cmp
local servers = { 'gopls', 'erlangls'}
local servers = { 'gopls', 'clangd', 'tsserver', 'pyright'}
for _, lsp in ipairs(servers) do
lspconfig[lsp].setup {
on_attach = on_attach,
@ -28,8 +28,6 @@ local config = function()
filetypes = {
'typescript',
'javascript',
'javascriptreact',
'typescriptreact',
'vue',
'json'
},