mirror of
https://github.com/rose-pine/neovim.git
synced 2025-10-15 12:38:53 +02:00
Merge branch 'main' of https://github.com/rose-pine/neovim into rose-pine-main
This commit is contained in:
commit
139cd93be7
14 changed files with 827 additions and 683 deletions
|
|
@ -5,7 +5,7 @@
|
|||
--- local highlights = require('rose-pine.plugins.bufferline')
|
||||
--- require('bufferline').setup({ highlights = highlights })
|
||||
|
||||
local p = require('rose-pine.palette')
|
||||
local p = require("rose-pine.palette")
|
||||
|
||||
return {
|
||||
-- fill = {
|
||||
|
|
@ -20,10 +20,10 @@ return {
|
|||
-- fg = '<color-value-here>',
|
||||
-- bg = '<color-value-here>',
|
||||
-- },
|
||||
-- tab_selected = {
|
||||
-- fg = '<color-value-here>',
|
||||
-- bg = '<color-value-here>',
|
||||
-- },
|
||||
tab_selected = {
|
||||
fg = p.text,
|
||||
bg = p.overlay,
|
||||
},
|
||||
-- tab_close = {
|
||||
-- fg = '<color-value-here>',
|
||||
-- bg = '<color-value-here>',
|
||||
|
|
|
|||
|
|
@ -3,17 +3,17 @@
|
|||
---
|
||||
--- @usage
|
||||
--- local highlights = require('rose-pine.plugins.galaxyline')
|
||||
local p = require('rose-pine.palette')
|
||||
local p = require("rose-pine.palette")
|
||||
|
||||
return {
|
||||
bg = p.surface,
|
||||
fg = p.text,
|
||||
fg_alt = p.subtle,
|
||||
yellow = p.gold,
|
||||
cyan = p.rose,
|
||||
green = p.pine,
|
||||
orange = p.muted,
|
||||
magenta = p.iris,
|
||||
blue = p.foam,
|
||||
red = p.love
|
||||
bg = p.surface,
|
||||
fg = p.text,
|
||||
fg_alt = p.subtle,
|
||||
yellow = p.gold,
|
||||
cyan = p.rose,
|
||||
green = p.pine,
|
||||
orange = p.muted,
|
||||
magenta = p.iris,
|
||||
blue = p.foam,
|
||||
red = p.love,
|
||||
}
|
||||
|
|
|
|||
|
|
@ -4,6 +4,6 @@
|
|||
--- @usage
|
||||
--- local highlights = require('rose-pine.plugins.markid')
|
||||
--- require("nvim-treesitter.configs").setup({ markid = { enable = true, colors = highlights } })
|
||||
local p = require('rose-pine.palette')
|
||||
local p = require("rose-pine.palette")
|
||||
|
||||
return {p.foam, p.rose, p.iris}
|
||||
return { p.foam, p.rose, p.iris }
|
||||
|
|
|
|||
|
|
@ -5,10 +5,10 @@
|
|||
--- local highlights = require('rose-pine.plugins.toggleterm')
|
||||
--- require('toggleterm').setup({ highlights = highlights })
|
||||
return {
|
||||
Normal = {link = 'Normal'},
|
||||
NormalFloat = {link = 'Normal'},
|
||||
FloatBorder = {link = 'FloatBorder'},
|
||||
SignColumn = {link = 'SignColumn'},
|
||||
StatusLine = {link = 'StatusLine'},
|
||||
StatusLineNC = {link = 'StatusLineNC'}
|
||||
Normal = { link = "Normal" },
|
||||
NormalFloat = { link = "Normal" },
|
||||
FloatBorder = { link = "FloatBorder" },
|
||||
SignColumn = { link = "SignColumn" },
|
||||
StatusLine = { link = "StatusLine" },
|
||||
StatusLineNC = { link = "StatusLineNC" },
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue