summaryrefslogtreecommitdiff
path: root/nvim/lua/plugins/treesitter.lua
diff options
context:
space:
mode:
Diffstat (limited to 'nvim/lua/plugins/treesitter.lua')
-rw-r--r--nvim/lua/plugins/treesitter.lua14
1 files changed, 14 insertions, 0 deletions
diff --git a/nvim/lua/plugins/treesitter.lua b/nvim/lua/plugins/treesitter.lua
new file mode 100644
index 0000000..4b0360f
--- /dev/null
+++ b/nvim/lua/plugins/treesitter.lua
@@ -0,0 +1,14 @@
+return {
+ ensure_installed = {
+ "lua",
+ "vim",
+ "vimdoc",
+ },
+
+ highlight = {
+ enable = true,
+ use_languagetree = true,
+ },
+
+ indent.enable = true,
+}