chg: Some changes to treesitter config

This commit is contained in:
Sayantan Santra 2024-03-26 02:30:40 -05:00
parent a2748ac0e9
commit a58149ce06
Signed by: SinTan1729
GPG key ID: EB3E68BFBA25C85F

View file

@ -2,8 +2,12 @@ local configs = require("nvim-treesitter.configs")
configs.setup({ configs.setup({
ensure_installed = { "rust", "lua", "vim", "vimdoc", "latex", "ocaml", 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, sync_install = false,
highlight = { enable = true }, highlight = {
enable = true,
disable = { "make" },
},
indent = { enable = true }, indent = { enable = true },
}) })