mirror of
https://github.com/rose-pine/neovim.git
synced 2025-10-15 12:38:53 +02:00
- move config to lua - use rose for search match - fix background flicker when automatically switching to dawn - remove unneeded highlights (please report regressions) - remove deprecated `LspDiagnostics*` - remove `LspReference*` - improve overall consistency between elements - non-treesitter updates to match treesitter styles - update popup menu scrollbar and selection - update telescope selection - match cursorcolumn to cursorline
20 lines
473 B
Lua
20 lines
473 B
Lua
local present, galaxyline_colors = pcall(require, 'galaxyline.themes.colors')
|
|
if not present then
|
|
return
|
|
end
|
|
|
|
local palette = require('rose-pine.palette')
|
|
local colors = palette[vim.g.rose_pine_variant or 'main']
|
|
|
|
galaxyline_colors['rose-pine'] = {
|
|
bg = colors.overlay,
|
|
fg = colors.text,
|
|
fg_alt = colors.subtle,
|
|
blue = colors.foam,
|
|
cyan = colors.foam,
|
|
green = colors.muted,
|
|
magenta = colors.iris,
|
|
orange = colors.rose,
|
|
red = colors.love,
|
|
yellow = colors.gold,
|
|
}
|