mirror of
https://github.com/timmypidashev/darkbox.nvim.git
synced 2026-04-14 03:33:51 +00:00
Fix WinSeparator
This commit is contained in:
@@ -18,6 +18,9 @@ M.colors = {
|
|||||||
dim_black = "#3c3836", -- For UI elements needing slight contrast from bg
|
dim_black = "#3c3836", -- For UI elements needing slight contrast from bg
|
||||||
}
|
}
|
||||||
|
|
||||||
|
-- Set WinSeparator to black
|
||||||
|
vim.cmd("hi WinSeparator guifg=#000000")
|
||||||
|
|
||||||
-- Define all the highlight groups
|
-- Define all the highlight groups
|
||||||
local function get_groups(colors)
|
local function get_groups(colors)
|
||||||
return {
|
return {
|
||||||
@@ -30,7 +33,6 @@ local function get_groups(colors)
|
|||||||
LineNr = { fg = colors.gray },
|
LineNr = { fg = colors.gray },
|
||||||
SignColumn = { bg = colors.bg },
|
SignColumn = { bg = colors.bg },
|
||||||
VertSplit = { fg = colors.bg },
|
VertSplit = { fg = colors.bg },
|
||||||
WinSeparator = { guifg = colors.bg },
|
|
||||||
StatusLine = { fg = colors.fg, bg = colors.black },
|
StatusLine = { fg = colors.fg, bg = colors.black },
|
||||||
StatusLineNC = { fg = colors.gray, bg = colors.black },
|
StatusLineNC = { fg = colors.gray, bg = colors.black },
|
||||||
Visual = { bg = colors.dim_gray },
|
Visual = { bg = colors.dim_gray },
|
||||||
|
|||||||
Reference in New Issue
Block a user