feat: config
This commit is contained in:
commit
d47035b8c7
11 changed files with 421 additions and 0 deletions
27
after/plugin/theme.lua
Normal file
27
after/plugin/theme.lua
Normal file
|
@ -0,0 +1,27 @@
|
|||
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")
|
Loading…
Add table
Add a link
Reference in a new issue