feat: add Rainbow Delimiters for colorful delimiter highlighting
This commit is contained in:
@@ -19,6 +19,25 @@ return {
|
|||||||
{ -- IncRename
|
{ -- IncRename
|
||||||
import = "lazyvim.plugins.extras.editor.inc-rename",
|
import = "lazyvim.plugins.extras.editor.inc-rename",
|
||||||
},
|
},
|
||||||
|
{ -- Treesitter-context
|
||||||
|
import = "lazyvim.plugins.extras.ui.treesitter-context",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"folke/trouble.nvim",
|
||||||
|
cmd = { "Trouble" },
|
||||||
|
opts = {
|
||||||
|
modes = {
|
||||||
|
symbols = { -- Configure symbols mode
|
||||||
|
win = {
|
||||||
|
type = "split", -- split window
|
||||||
|
relative = "win", -- relative to current window
|
||||||
|
position = "right", -- right side
|
||||||
|
size = 0.3, -- 30% of the window
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
{ -- Flash
|
{ -- Flash
|
||||||
"folke/flash.nvim",
|
"folke/flash.nvim",
|
||||||
opts = {
|
opts = {
|
||||||
@@ -93,4 +112,16 @@ return {
|
|||||||
{ -- Comment Box
|
{ -- Comment Box
|
||||||
"LudoPinelli/comment-box.nvim",
|
"LudoPinelli/comment-box.nvim",
|
||||||
},
|
},
|
||||||
|
{ -- vim-visual-multi
|
||||||
|
"mg979/vim-visual-multi",
|
||||||
|
},
|
||||||
|
{ -- Todo Comments
|
||||||
|
"folke/todo-comments.nvim",
|
||||||
|
opts = {
|
||||||
|
keywords = data.types.todo.keywords,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
{ -- Rainbow Delimeters
|
||||||
|
"HiPhish/rainbow-delimiters.nvim",
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -36,6 +36,7 @@ return {
|
|||||||
nvim_surround = true,
|
nvim_surround = true,
|
||||||
octo = true,
|
octo = true,
|
||||||
overseer = true,
|
overseer = true,
|
||||||
|
rainbow_delimiters = true,
|
||||||
which_key = true,
|
which_key = true,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
@@ -124,8 +125,6 @@ return {
|
|||||||
{ -- Transparent
|
{ -- Transparent
|
||||||
"xiyaowong/transparent.nvim",
|
"xiyaowong/transparent.nvim",
|
||||||
lazy = true,
|
lazy = true,
|
||||||
config = true,
|
|
||||||
|
|
||||||
keys = {
|
keys = {
|
||||||
{
|
{
|
||||||
"<leader>wt",
|
"<leader>wt",
|
||||||
|
|||||||
Reference in New Issue
Block a user