diff options
Diffstat (limited to '.config/nvim/lua/caelus')
| -rw-r--r-- | .config/nvim/lua/caelus/init.lua | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/.config/nvim/lua/caelus/init.lua b/.config/nvim/lua/caelus/init.lua index 3aa029e..836a66e 100644 --- a/.config/nvim/lua/caelus/init.lua +++ b/.config/nvim/lua/caelus/init.lua @@ -76,7 +76,19 @@ function M.colorscheme() set(0, "TSFunction", { fg = colors.yellow }) set(0, "TSVariable", { fg = colors.fg }) set(0, "TSType", { fg = colors.cyan }) - + + -- blink + set(0, "BlinkCmpMenu", { bg = colors.gray1 }) + set(0, "BlinkCmpMenuBorder", { fg = colors.gray6, bg = colors.gray1 }) + set(0, "BlinkCmpMenuSelection", { fg = colors.bg, bg = colors.orange }) + set(0, "BlinkCmpLabel", { fg = colors.fg }) + set(0, "BlinkCmpLabelDetail", { fg = colors.gray7 }) + set(0, "BlinkCmpLabelDescription",{ fg = colors.gray8 }) + set(0, "BlinkCmpLabelMatch", { fg = colors.orange, bold = true }) + set(0, "BlinkCmpKind", { fg = colors.cyan }) + set(0, "BlinkCmpDoc", { fg = colors.fg, bg = colors.gray2 }) + set(0, "BlinkCmpDocBorder", { fg = colors.gray5, bg = colors.gray2 }) + if package.loaded['lualine'] then require('lualine').setup({ options = { theme = 'caelus' }, |
