First release
This commit is contained in:
Executable
+25
@@ -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,
|
||||
},
|
||||
}
|
||||
Reference in New Issue
Block a user