summaryrefslogtreecommitdiff
path: root/after/plugin/treesitter.lua
diff options
context:
space:
mode:
authorRaymaekers Luca <raymaekers.luca@gmail.com>2024-03-22 01:25:05 +0100
committerRaymaekers Luca <raymaekers.luca@gmail.com>2024-03-22 01:25:05 +0100
commit535de78034b347a3407aa6ff5287a1b4897172ea (patch)
treec0787523f460064b5671b703123f7e9f42a59a45 /after/plugin/treesitter.lua
First commit!
Diffstat (limited to 'after/plugin/treesitter.lua')
-rw-r--r--after/plugin/treesitter.lua10
1 files changed, 10 insertions, 0 deletions
diff --git a/after/plugin/treesitter.lua b/after/plugin/treesitter.lua
new file mode 100644
index 0000000..1eb6fa5
--- /dev/null
+++ b/after/plugin/treesitter.lua
@@ -0,0 +1,10 @@
+require("nvim-treesitter.configs").setup({
+ ensure_installed = { "lua", "bash" },
+ sync_install = false,
+ auto_install = true,
+
+ highlight = {
+ enable = true,
+ additional_vim_regex_highlighting = false,
+ },
+})