fix rainbow delims
This commit is contained in:
parent
82f8ed3969
commit
59a277ad3f
|
|
@ -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",
|
||||
|
|
|
|||
|
|
@ -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,
|
||||
},
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue