fix: use rosepine moon on dark mode
This commit is contained in:
parent
2d7753992e
commit
fa9f67e3e2
2 changed files with 23 additions and 19 deletions
|
|
@ -5,16 +5,22 @@ return {
|
|||
lazy = false,
|
||||
enabled = true,
|
||||
priority = 1000,
|
||||
opts = {
|
||||
styles = {
|
||||
-- transparency = true,
|
||||
},
|
||||
config = function()
|
||||
local rose = require("rose-pine")
|
||||
rose.setup({
|
||||
variant = "auto", -- auto, main, moon, or dawn
|
||||
dark_variant = "moon", -- main, moon, or dawn
|
||||
})
|
||||
end,
|
||||
},
|
||||
opts = {},
|
||||
config = function()
|
||||
local rose = require("rose-pine")
|
||||
rose.setup({
|
||||
variant = "auto", -- auto, main, moon, or dawn
|
||||
dark_variant = "moon", -- main, moon, or dawn
|
||||
extend_background_behind_borders = true,
|
||||
-- disable_background = true,
|
||||
enable = {
|
||||
terminal = true,
|
||||
legacy_highlights = true, -- Improve compatibility for previous versions of Neovim
|
||||
migrations = true, -- Handle deprecated options automatically
|
||||
},
|
||||
styles = {
|
||||
transparency = false,
|
||||
},
|
||||
})
|
||||
end,
|
||||
}
|
||||
|
|
|
|||
|
|
@ -6,7 +6,10 @@ vim.lsp.enable({
|
|||
"yaml",
|
||||
"ansible",
|
||||
"marksman",
|
||||
"write-good",
|
||||
"woke",
|
||||
"tailwind",
|
||||
"docker-compose",
|
||||
})
|
||||
|
||||
-- Set highlight on search
|
||||
|
|
@ -59,14 +62,9 @@ vim.opt.cursorline = true
|
|||
vim.opt.wrap = false
|
||||
|
||||
vim.opt.termguicolors = true
|
||||
-- vim.opt.background = "dark" -- light, dark
|
||||
-- Themes:
|
||||
-- tokyonight-night
|
||||
-- tokyonight-storm
|
||||
-- tokyonight-day
|
||||
-- tokyonight-moon
|
||||
-- vim.cmd.colorscheme("tokyonight-storm")
|
||||
vim.cmd.colorscheme("rose-pine")
|
||||
-- vim.opt.background = "light" -- light, dark
|
||||
|
||||
-- Decrease update time
|
||||
vim.opt.updatetime = 250
|
||||
|
|
@ -97,7 +95,7 @@ vim.filetype.add({
|
|||
},
|
||||
})
|
||||
|
||||
-- rounded borders
|
||||
-- Rounded borders
|
||||
vim.opt.winborder = "rounded"
|
||||
|
||||
-- Inline hints
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue