diff options
| author | dacctal <dacctalyt@gmail.com> | 2026-03-19 23:54:46 +0000 |
|---|---|---|
| committer | dacctal <dacctalyt@gmail.com> | 2026-03-19 23:54:46 +0000 |
| commit | d5d2f6c39ade3dac9954bf908ad52be4f743c80b (patch) | |
| tree | 3f9ce8a15ed62f458133b79738df6dbee39d40c5 /.config/nvim/lua/caelus | |
| parent | 71109a6d1fe4044b8573ed2e9148222a640e89de (diff) | |
added blink support for nvim colorscheme
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' }, |
