summaryrefslogtreecommitdiff
path: root/lua/plugins/treesitter.lua
diff options
context:
space:
mode:
authorBlake Romero <blake@blkrom.com>2025-01-24 00:33:22 +0000
committerBlake Romero <blake@blkrom.com>2025-01-24 00:33:22 +0000
commitaac011ad60cd4895d107e43e85333aa6eb0cc9fd (patch)
tree091da37dc3cb020871998b6047d75e7aaf71b742 /lua/plugins/treesitter.lua
parent8b9517d63146e170a03554033164c2126160f8a8 (diff)
Add nvim-tree
Diffstat (limited to 'lua/plugins/treesitter.lua')
-rw-r--r--lua/plugins/treesitter.lua4
1 files changed, 2 insertions, 2 deletions
diff --git a/lua/plugins/treesitter.lua b/lua/plugins/treesitter.lua
index 24e6c32..69b452a 100644
--- a/lua/plugins/treesitter.lua
+++ b/lua/plugins/treesitter.lua
@@ -1,13 +1,13 @@
return {
"nvim-treesitter/nvim-treesitter",
build = ":TSUpdate",
- config = function ()
+ config = function ()
local ts = require("nvim-treesitter.configs")
ts.setup({
ensure_installed = { "c", "lua", "vim", "vimdoc", "html", "css", "javascript" },
sync_install = false,
highlight = { enable = true },
- indent = { enable = true },
+ indent = { enable = true },
})
end
}