summaryrefslogtreecommitdiff
path: root/.config/nvim/lua/config/treesitter.lua
diff options
context:
space:
mode:
Diffstat (limited to '.config/nvim/lua/config/treesitter.lua')
-rw-r--r--.config/nvim/lua/config/treesitter.lua14
1 files changed, 14 insertions, 0 deletions
diff --git a/.config/nvim/lua/config/treesitter.lua b/.config/nvim/lua/config/treesitter.lua
new file mode 100644
index 0000000..29f5158
--- /dev/null
+++ b/.config/nvim/lua/config/treesitter.lua
@@ -0,0 +1,14 @@
+require'nvim-treesitter.configs'.setup {
+ -- A list of parser names, or "all" (the five listed parsers should always be installed)
+ ensure_installed = { "c", "lua", "vim", "vimdoc", "query", "c_sharp", "python", "cpp", "gitignore", "gitattributes", "git_config", "git_rebase", "gitcommit", "html", "javascript", "make", "cmake", "zig", "bash", "asm", "json", "xml", "css" },
+
+ -- Install parsers synchronously (only applied to `ensure_installed`)
+ sync_install = false,
+
+ -- Automatically install missing parsers when entering buffer
+ auto_install = true,
+
+ highlight = {
+ enable = true,
+ },
+}