This commit is contained in:
Jannik Donker
2024-04-07 11:40:22 +02:00
parent 527d184422
commit 9d9108f2c2
11 changed files with 115 additions and 38 deletions
+4 -3
View File
@@ -1,14 +1,15 @@
return {
"nvim-treesitter/nvim-treesitter",
"nvim-treesitter/nvim-treesitter",
build = ":TSUpdate",
config = function()
local configs = require("nvim-treesitter.configs")
vim.keymap.set("n", "<C-t>", ":Neotree toggle<CR>")
configs.setup({
ensure_installed = {"lua", "javascript", "html", "css", "rust", "typescript", "python"},
ensure_installed = { "lua", "javascript", "html", "css", "svelte", "rust", "typescript", "python" },
auto_isntall = { enable = true },
highlight = { enable = true },
indent = { enable = true },
})
end
end,
}