diff --git a/laptop/plugin/treesitter.lua b/laptop/plugin/treesitter.lua index 4136a72..4fe650f 100644 --- a/laptop/plugin/treesitter.lua +++ b/laptop/plugin/treesitter.lua @@ -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 }, })