feat: explicitly set treesitter config
parent
79e474e8eb
commit
e768b07fda
|
@ -1,8 +1,20 @@
|
||||||
require('nvim-treesitter.configs').setup({
|
require('nvim-treesitter.configs').setup({
|
||||||
highlight = { enable = true, additional_vim_regex_highlighting = false },
|
|
||||||
ensure_installed = {
|
ensure_installed = {
|
||||||
"bash", "c", "cpp", "css", "dockerfile", "hcl", "html", "javascript",
|
"bash", "c", "cpp", "css", "dockerfile", "hcl", "html", "javascript",
|
||||||
"json", "latex", "lua", "markdown", "nix", "python", "rust", "svelte",
|
"json", "latex", "lua", "markdown", "nix", "python", "rust", "svelte",
|
||||||
"toml", "tsx", "typescript", "vim", "vue", "yaml"
|
"toml", "tsx", "typescript", "vim", "vue", "yaml"
|
||||||
}
|
},
|
||||||
|
auto_install = true,
|
||||||
|
highlight = {
|
||||||
|
enable = true,
|
||||||
|
additional_vim_regex_highlighting = false
|
||||||
|
},
|
||||||
|
indent = {
|
||||||
|
enable = true,
|
||||||
|
},
|
||||||
|
rainbow = {
|
||||||
|
enable = true,
|
||||||
|
extended_mode = true,
|
||||||
|
max_file_lines = nil,
|
||||||
|
},
|
||||||
})
|
})
|
||||||
|
|
Loading…
Reference in New Issue