summaryrefslogtreecommitdiff
path: root/config/plugins/treesitter.lua
diff options
context:
space:
mode:
authorseth <[email protected]>2023-12-31 08:01:03 -0500
committerseth <[email protected]>2023-12-31 08:52:04 -0500
commitdec8d36cbdbb3b9c5c12792ed199892ce2e82069 (patch)
tree89422c04c25b4ed4c3156d4477c894416500e8b3 /config/plugins/treesitter.lua
parentae9136a14ae0b0fe91faad59b23d3a532ca84ed5 (diff)
back to regular lua
Diffstat (limited to 'config/plugins/treesitter.lua')
-rw-r--r--config/plugins/treesitter.lua11
1 files changed, 11 insertions, 0 deletions
diff --git a/config/plugins/treesitter.lua b/config/plugins/treesitter.lua
new file mode 100644
index 0000000..e9b88f2
--- /dev/null
+++ b/config/plugins/treesitter.lua
@@ -0,0 +1,11 @@
+require("nvim-treesitter.configs").setup({
+ auto_install = false,
+
+ highlight = { enable = true },
+ indent = { enable = true },
+
+ -- nvim-ts-autotag
+ autotag = { enable = true },
+})
+
+vim.g.skip_ts_context_commentstring_module = true