mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-22 00:49:01 +02:00
add: cahange bg color visual multi
This commit is contained in:
parent
941cd9a7e2
commit
6c62067226
2 changed files with 6 additions and 0 deletions
|
@ -455,6 +455,8 @@ return {
|
||||||
lCursor = { fg = "$bg0", bg = "$fg" }, -- the character under the cursor when |language-mapping| is used (see 'guicursor')
|
lCursor = { fg = "$bg0", bg = "$fg" }, -- the character under the cursor when |language-mapping| is used (see 'guicursor')
|
||||||
CursorIM = { fg = "$bg0", bg = "$fg" }, -- like Cursor, but used when in IME mode |CursorIM|
|
CursorIM = { fg = "$bg0", bg = "$fg" }, -- like Cursor, but used when in IME mode |CursorIM|
|
||||||
CursorColumn = { bg = "#333842" }, -- Screen-column at the cursor, when 'cursorcolumn' is set.
|
CursorColumn = { bg = "#333842" }, -- Screen-column at the cursor, when 'cursorcolumn' is set.
|
||||||
|
Visual = { bg = "$orange" },
|
||||||
|
DiffText = { bg = "$orange" },
|
||||||
},
|
},
|
||||||
transparent = transparent,
|
transparent = transparent,
|
||||||
lualine = {
|
lualine = {
|
||||||
|
|
|
@ -334,6 +334,10 @@ return {
|
||||||
["Select Cursor Down"] = "<M-C-Down>", -- equal CTRL+ALT+DOWN on VSCODE
|
["Select Cursor Down"] = "<M-C-Down>", -- equal CTRL+ALT+DOWN on VSCODE
|
||||||
["Select Cursor Up"] = "<M-C-Up>", -- equal CTRL+ALT+UP on VSCODE
|
["Select Cursor Up"] = "<M-C-Up>", -- equal CTRL+ALT+UP on VSCODE
|
||||||
}
|
}
|
||||||
|
vim.g.VM_Mono_hl = "DiffText"
|
||||||
|
vim.g.VM_Extend_hl = "DiffAdd"
|
||||||
|
vim.g.VM_Cursor_hl = "Visual"
|
||||||
|
vim.g.VM_Insert_hl = "DiffChange"
|
||||||
end,
|
end,
|
||||||
},
|
},
|
||||||
-- for auto close tag
|
-- for auto close tag
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue