Skip to content

Commit 203846f

Browse files
author
David Ponte
committed
added rose pine theme with costum options
1 parent ac6f81f commit 203846f

File tree

1 file changed

+30
-1
lines changed

1 file changed

+30
-1
lines changed

init.lua

Lines changed: 30 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -893,7 +893,36 @@ require('lazy').setup({
893893
vim.cmd.colorscheme 'tokyonight-night'
894894
end,
895895
},
896-
{ 'rose-pine/neovim', name = 'rose-pine' },
896+
{
897+
'rose-pine/neovim',
898+
config = function()
899+
require('rose-pine').setup {
900+
variant = 'auto', -- auto, main, moon, or dawn
901+
dark_variant = 'main', -- main, moon, or dawn
902+
dim_inactive_windows = false,
903+
extend_background_behind_borders = true,
904+
905+
enable = {
906+
terminal = true,
907+
legacy_highlights = true,
908+
migrations = true,
909+
},
910+
911+
styles = {
912+
bold = true,
913+
italic = true,
914+
transparency = false,
915+
},
916+
917+
highlight_groups = {
918+
Comment = { fg = 'foam' },
919+
-- StatusLine = { fg = "love", bg = "love", blend = 15 },
920+
-- VertSplit = { fg = "muted", bg = "muted" },
921+
-- Visual = { fg = "base", bg = "text", inherit = false },
922+
},
923+
}
924+
end,
925+
},
897926
-- Highlight todo, notes, etc in comments
898927
{ 'folke/todo-comments.nvim', event = 'VimEnter', dependencies = { 'nvim-lua/plenary.nvim' }, opts = { signs = false } },
899928

0 commit comments

Comments
 (0)