fix rainbow delims

This commit is contained in:
A_train63 2023-09-15 16:48:19 -07:00
parent 82f8ed3969
commit 59a277ad3f
2 changed files with 3 additions and 2 deletions

View File

@ -21,7 +21,7 @@ return {
}, },
"tpope/vim-sleuth", -- Detect tabstop and shiftwidth automatically "tpope/vim-sleuth", -- Detect tabstop and shiftwidth automatically
"tpope/vim-surround", -- Surround stuff with the ys-, cs-, ds- commands "tpope/vim-surround", -- Surround stuff with the ys-, cs-, ds- commands
"mrjones2014/nvim-ts-rainbow", "HiPhish/rainbow-delimiters.nvim",
{ {
"windwp/nvim-autopairs", "windwp/nvim-autopairs",
event = "InsertEnter", event = "InsertEnter",

View File

@ -11,7 +11,7 @@ return {
config = function() config = function()
require("nvim-treesitter.configs").setup({ require("nvim-treesitter.configs").setup({
-- Add languages to be installed here that you want installed for treesitter -- 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 }, highlight = { enable = true },
indent = { enable = true, disable = { "python" } }, indent = { enable = true, disable = { "python" } },
@ -60,6 +60,7 @@ return {
}, },
}, },
}) })
end, end,
}, },
} }