aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXander Swan <email>2025-12-03 10:00:41 -0500
committerXander Swan <email>2025-12-03 10:00:41 -0500
commit74d36a663fd715f6c4a3cfe79ebea9b95ff7c82d (patch)
tree4154080d31f727c9c86542e553f0da73812ea44e
parent60a00274a3d8ded1335cfc10c65ed933b3de2053 (diff)
update neovim colors a lil
-rw-r--r--.config/nvim/lua/plugin/setup.lua11
1 files changed, 5 insertions, 6 deletions
diff --git a/.config/nvim/lua/plugin/setup.lua b/.config/nvim/lua/plugin/setup.lua
index 153585b..e2359fc 100644
--- a/.config/nvim/lua/plugin/setup.lua
+++ b/.config/nvim/lua/plugin/setup.lua
@@ -16,11 +16,10 @@ vim.cmd.colorscheme("mine")
local colors = {
white = "#FFFFFF",
- black = "#000000",
gray = "#A0A0A0",
green = "#22CC55",
+ pink = "#FF4499",
bg = "#222222",
- bg_alt = "#333333",
}
local theme = {
@@ -30,14 +29,14 @@ local theme = {
c = {bg = colors.bg, fg = colors.white}
},
insert = {
- a = {bg = colors.gray, fg = colors.black, gui = 'bold,italic'},
+ a = {bg = colors.pink, fg = colors.white, gui = 'bold,italic'},
b = {bg = colors.bg, fg = colors.white},
c = {bg = colors.bg, fg = colors.white}
},
visual = {
a = {bg = colors.green, fg = colors.white, gui = 'bold,italic'},
- b = {bg = colors.lightgray, fg = colors.white},
- c = {bg = colors.lightgray, fg = colors.white}
+ b = {bg = colors.bg, fg = colors.white},
+ c = {bg = colors.bg, fg = colors.white}
},
replace = {
a = {bg = colors.pink, fg = colors.white, gui = 'bold,italic'},
@@ -45,7 +44,7 @@ local theme = {
c = {bg = colors.bg, fg = colors.white}
},
command = {
- a = {bg = colors.bg_alt, fg = colors.white, gui = 'bold,italic'},
+ a = {bg = colors.gray, fg = colors.black, gui = 'bold,italic'},
b = {bg = colors.bg, fg = colors.white},
c = {bg = colors.bg, fg = colors.white}
},