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, }, }