First release

This commit is contained in:
Mészáros Zoltán
2026-06-16 12:27:51 +02:00
commit f750e44e1a
19 changed files with 1285 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
require('nvim-treesitter.configs').setup {
-- A list of parser names, or "all"
ensure_installed = {
"lua", "vim", "vimdoc", "query",
"javascript", "typescript", "tsx",
"python", "rust", "go", "c", "cpp",
"pascal", "latex", "yaml",
-- add more as needed
},
-- Install parsers synchronously (only applied to `ensure_installed`)
sync_install = false,
-- Automatically install missing parsers when entering buffer
auto_install = true,
highlight = {
enable = true, -- false will disable the whole extension
additional_vim_regex_highlighting = false,
},
indent = {
enable = true,
},
}