nvim: use modes.nvim for mode-specific cursor colors. fancier codeium highlights
This commit is contained in:
parent
1a7711e2a8
commit
fff2203e4b
4 changed files with 29 additions and 1 deletions
|
@ -31,6 +31,7 @@
|
|||
"mini.comment": { "branch": "main", "commit": "f9f1a646fd3d9df7397aa1b9550a875fe8189eb0" },
|
||||
"mini.indentscope": { "branch": "main", "commit": "a8274b6ea2d868198d27bd91a31ed5ea3a6a5744" },
|
||||
"mini.surround": { "branch": "main", "commit": "0f528eb2e1bab420c0569d9e52615144c51db920" },
|
||||
"modes.nvim": { "branch": "main", "commit": "4035a46aaabe43faf1b54740575af9dd5bb03809" },
|
||||
"neo-tree.nvim": { "branch": "v3.x", "commit": "7aad1bf3f6b849cbf108e02c55ad4d701cb4d33a" },
|
||||
"neocodeium": { "branch": "main", "commit": "666d4f57e8bf0789c58957a9483dd671bc038123" },
|
||||
"neoconf.nvim": { "branch": "main", "commit": "d4a48c2a6fdeec138605cee4eb6f8c6fafd0b3ed" },
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
|
||||
vim.opt.number = true
|
||||
vim.opt.relativenumber = false
|
||||
vim.opt.clipboard = "unnamed" --"unnamedplus"
|
||||
-- vim.opt.clipboard = "unnamed" --"unnamedplus"
|
||||
|
||||
vim.g.do_filetype_lua = 1
|
||||
vim.g.root_spec = { { ".git", "lua" }, "lsp", "cwd" }
|
||||
|
|
|
@ -76,6 +76,18 @@ return {
|
|||
Color.new("normal", "#e3e0cd")
|
||||
Group.new("Normal", colors.normal, nil)
|
||||
|
||||
Color.new("Visual", "#440066")
|
||||
Group.new("ModesVisualVisual", nil, colors.Visual)
|
||||
Group.new("Visual", nil, colors.Visual)
|
||||
Group.new("VisualNOS", nil, colors.Visual)
|
||||
|
||||
Color.new("NeoCodeiumLabelBg", "#eda92d")
|
||||
Color.new("NeoCodeiumLabelFg", "#000000")
|
||||
Group.new("NeoCodeiumLabel", colors.NeoCodeiumLabelFg, colors.NeoCodeiumLabelBg)
|
||||
|
||||
Color.new("NeoCodeiumSuggestion", "#996611")
|
||||
Group.new("NeoCodeiumSuggestion", colors.NeoCodeiumSuggestion, nil, styles.italic)
|
||||
|
||||
Color.new("WinSeparator", "#223344")
|
||||
Group.new("WinSeparator", colors.WinSeparator, nil)
|
||||
|
||||
|
|
|
@ -69,6 +69,21 @@ return {
|
|||
},
|
||||
},
|
||||
|
||||
{
|
||||
"mvllow/modes.nvim",
|
||||
opts = {
|
||||
colors = {
|
||||
copy = "#f5c359",
|
||||
delete = "#c75c6a",
|
||||
insert = "#ffcc00",
|
||||
visual = "#c343fc",
|
||||
},
|
||||
set_cursor = true,
|
||||
set_cursorline = true,
|
||||
set_number = true,
|
||||
},
|
||||
},
|
||||
|
||||
{
|
||||
"rcarriga/nvim-notify",
|
||||
opts = {
|
||||
|
|
Loading…
Reference in a new issue