all repos

init.lua @ f90b940acf01bed59b55cf4cc09aa67c1e72038a

my nvim config
2 files changed, 2 insertions(+), 0 deletions(-)
feat(plugins): add `nvim-ts-rainbow`
Author: Smirnov Oleksandr ss2316544@gmail.com
Committed at: 2022-08-17 23:57:13 +0300
Parent: ec1ba4f
M lua/configs/other.lua

@@ -14,6 +14,7 @@ highlight = { enable = true, additional_vim_regex_highlighting = false },

context_commentstring = { enable = true, enable_autocmd = false }, autopairs = { enable = true }, endwise = { enable = true }, + rainbow = { enable = true }, } end
M lua/plugins.lua

@@ -81,6 +81,7 @@ event = "BufRead",

config = u.get.other "treesitter", requires = { { "RRethy/nvim-treesitter-endwise", after = "nvim-treesitter" }, + { "p00f/nvim-ts-rainbow", after = "nvim-treesitter" }, }, }