From 59a277ad3f49036ad6bcfea44c375be5801f9d0a Mon Sep 17 00:00:00 2001 From: A_train63 Date: Fri, 15 Sep 2023 16:48:19 -0700 Subject: [PATCH] fix rainbow delims --- lua/plugins/misc.lua | 2 +- lua/plugins/treesitter.lua | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/lua/plugins/misc.lua b/lua/plugins/misc.lua index 8b7131d..c90210e 100644 --- a/lua/plugins/misc.lua +++ b/lua/plugins/misc.lua @@ -21,7 +21,7 @@ return { }, "tpope/vim-sleuth", -- Detect tabstop and shiftwidth automatically "tpope/vim-surround", -- Surround stuff with the ys-, cs-, ds- commands - "mrjones2014/nvim-ts-rainbow", + "HiPhish/rainbow-delimiters.nvim", { "windwp/nvim-autopairs", event = "InsertEnter", diff --git a/lua/plugins/treesitter.lua b/lua/plugins/treesitter.lua index 8265952..c3ca437 100644 --- a/lua/plugins/treesitter.lua +++ b/lua/plugins/treesitter.lua @@ -11,7 +11,7 @@ return { config = function() require("nvim-treesitter.configs").setup({ -- Add languages to be installed here that you want installed for treesitter - ensure_installed = { "c", "cpp", "go", "lua", "python", "rust", "vim" }, + ensure_installed = { "c", "cpp", "go", "lua", "python", "rust", "vim", "make" }, highlight = { enable = true }, indent = { enable = true, disable = { "python" } }, @@ -60,6 +60,7 @@ return { }, }, }) + end, }, }