mirror of
https://github.com/rose-pine/neovim.git
synced 2025-10-15 12:38:53 +02:00
refactor: format and remove unused values
- update format rules - update plugin file headers - remove unused opacity from palette
This commit is contained in:
parent
df94e56cad
commit
9d54de5a5d
7 changed files with 40 additions and 23 deletions
|
|
@ -10,10 +10,13 @@ function M.get(config)
|
|||
local styles = {
|
||||
italic = (config.disable_italics and p.none) or 'italic',
|
||||
vert_split = (config.bold_vert_split and groups.border) or p.none,
|
||||
background = (config.disable_background and p.none) or groups.background,
|
||||
float_background = (config.disable_float_background and p.none) or groups.panel,
|
||||
background = (config.disable_background and p.none)
|
||||
or groups.background,
|
||||
float_background = (config.disable_float_background and p.none)
|
||||
or groups.panel,
|
||||
}
|
||||
styles.nc_background = (config.dim_nc_background and groups.panel) or styles.background
|
||||
styles.nc_background = (config.dim_nc_background and groups.panel)
|
||||
or styles.background
|
||||
|
||||
theme = {
|
||||
ColorColumn = { bg = p.overlay },
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue