feat: config

This commit is contained in:
hexlocation 2025-05-12 07:48:47 +02:00
commit d47035b8c7
11 changed files with 421 additions and 0 deletions

27
after/plugin/theme.lua Normal file
View 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")