BREAKING!: rewrite config api and update styles

- 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
This commit is contained in:
mvllow 2022-02-04 19:22:13 -06:00
commit b77bd8e7ce
9 changed files with 595 additions and 599 deletions

View file

@ -1,4 +1,5 @@
local p = require('rose-pine.palette')
local palette = require('rose-pine.palette')
local colors = palette[vim.g.rose_pine_variant or 'main']
-- TODO: Someone who uses bufferline.nvim is free to PR with this addition
-- `:h bufferline-highlights`
@ -13,11 +14,11 @@ local p = require('rose-pine.palette')
-- ```
return {
fill = {
guifg = p.text,
guibg = p.base,
guifg = colors.text,
guibg = colors.base,
},
background = {
guifg = p.text,
guibg = p.base,
guifg = colors.text,
guibg = colors.base,
},
}