Neovim的Rosé Pine主题
为优雅的极简主义者打造的全天然松木、人造皮草和一丝苏荷氛围
入门指南
使用您喜欢的插件管理器安装 rose-pine/neovim
:
paq-nvim
{ "rose-pine/neovim", as = "rose-pine" }
lazy.nvim
{ "rose-pine/neovim", name = "rose-pine" }
图库
Rosé Pine
Rosé Pine Moon
Rosé Pine Dawn
选项
[!重要] 在设置配色方案之前配置选项。
Rosé Pine 有三种变体:主要、月亮和黎明。默认情况下,会遵循 vim.o.background
,在亮色时使用黎明版本,在暗色时使用 dark_variant
。
颜色值接受 Rosé Pine 调色板 中的命名颜色,例如 "foam",或有效的十六进制值,例如 "#fa8072"。
require("rose-pine").setup({
variant = "auto", -- 自动、主要、月亮或黎明
dark_variant = "main", -- 主要、月亮或黎明
dim_inactive_windows = false,
extend_background_behind_borders = true,
enable = {
terminal = true,
legacy_highlights = true, -- 改善与之前版本 Neovim 的兼容性
migrations = true, -- 自动处理废弃的选项
},
styles = {
bold = true,
italic = true,
transparency = false,
},
groups = {
border = "muted",
link = "iris",
panel = "surface",
error = "love",
hint = "iris",
info = "foam",
note = "pine",
todo = "rose",
warn = "gold",
git_add = "foam",
git_change = "rose",
git_delete = "love",
git_dirty = "rose",
git_ignore = "muted",
git_merge = "iris",
git_rename = "pine",
git_stage = "iris",
git_text = "rose",
git_untracked = "subtle",
h1 = "iris",
h2 = "foam",
h3 = "rose",
h4 = "gold",
h5 = "pine",
h6 = "foam",
},
pallete = {
-- 每个变体覆盖内置调色板
-- moon = {
-- base = '#18191a',
-- overlay = '#363738',
-- },
},
highlight_groups = {
-- Comment = { fg = "foam" },
-- VertSplit = { fg = "muted", bg = "muted" },
},
before_highlight = function(group, highlight, palette)
-- 禁用所有下划线
-- if highlight.undercurl then
-- highlight.undercurl = false
-- end
--
-- 更改调色板颜色
-- if highlight.fg == palette.pine then
-- highlight.fg = palette.foam
-- end
end,
})
vim.cmd("colorscheme rose-pine")
-- vim.cmd("colorscheme rose-pine-main")
-- vim.cmd("colorscheme rose-pine-moon")
-- vim.cmd("colorscheme rose-pine-dawn")
贡献
我们欢迎并感谢任何形式的贡献。对于任何提议的更改,请创建问题或开始讨论。我们鼓励为支持额外插件或 treesitter 改进 提交拉取请求。