From a58149ce06b123f8e1ea75f0c872be95593a74a1 Mon Sep 17 00:00:00 2001 From: SinTan1729 Date: Tue, 26 Mar 2024 02:30:40 -0500 Subject: [PATCH] chg: Some changes to treesitter config --- laptop/plugin/treesitter.lua | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) 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 }, })