mirror of
https://github.com/LazyVim/starter.git
synced 2026-07-22 12:31:04 +00:00
24 lines
362 B
Lua
24 lines
362 B
Lua
return {
|
|
-- disable vtsls
|
|
{
|
|
"neovim/nvim-lspconfig",
|
|
opts = {
|
|
servers = {
|
|
vtsls = false,
|
|
tsserver = false,
|
|
},
|
|
},
|
|
},
|
|
|
|
-- enable typescript-tools
|
|
{
|
|
"pmizio/typescript-tools.nvim",
|
|
ft = {
|
|
"typescript",
|
|
"typescriptreact",
|
|
"javascript",
|
|
"javascriptreact",
|
|
},
|
|
opts = {},
|
|
},
|
|
}
|