initial commit

This commit is contained in:
Jannik Donker
2024-04-06 18:31:40 +02:00
commit 527d184422
8 changed files with 90 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
return {
"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"},
highlight = { enable = true },
indent = { enable = true },
})
end
}