chg: Some changes to treesitter config
This commit is contained in:
parent
a2748ac0e9
commit
a58149ce06
1 changed files with 6 additions and 2 deletions
|
@ -2,8 +2,12 @@ local configs = require("nvim-treesitter.configs")
|
|||
|
||||
configs.setup({
|
||||
ensure_installed = { "rust", "lua", "vim", "vimdoc", "latex", "ocaml",
|
||||
"yaml", "dockerfile", "make", "bash", "html", "javascript", "css" },
|
||||
"yaml", "dockerfile", "bash", "html", "javascript", "css", "go",
|
||||
"json", "python", "fish" },
|
||||
sync_install = false,
|
||||
highlight = { enable = true },
|
||||
highlight = {
|
||||
enable = true,
|
||||
disable = { "make" },
|
||||
},
|
||||
indent = { enable = true },
|
||||
})
|
||||
|
|
Loading…
Reference in a new issue