mirror of https://github.com/LazyVim/starter
11 lines
202 B
Lua
11 lines
202 B
Lua
|
return {
|
||
|
{
|
||
|
"nvim-treesitter/nvim-treesitter",
|
||
|
opts = {
|
||
|
ensure_installed = {
|
||
|
"svelte", --- make sure you have svelte LSP, the rest is your treesitter plugins
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
};
|