27 lines
623 B
Lua
27 lines
623 B
Lua
require("rose-pine").setup({
|
|
variant = "auto",
|
|
dark_variant = "moon",
|
|
extend_background_behind_borders = true,
|
|
|
|
enable = {
|
|
terminal = true,
|
|
legacy_highlights = true, -- Improve compatibility for previous versions of Neovim
|
|
migrations = true, -- Handle deprecated options automatically
|
|
},
|
|
|
|
styles = {
|
|
bold = true,
|
|
italic = true,
|
|
transparency = true,
|
|
},
|
|
|
|
})
|
|
|
|
require('lualine').setup({})
|
|
|
|
function ColorMyPencils(color) -- skidded from theprimeagen
|
|
colors = color or "catppuccin"
|
|
vim.cmd.colorscheme(color)
|
|
end
|
|
|
|
ColorMyPencils("rose-pine")
|