nvim/lua/plugins/themes.lua
Maurice Grönwoldt 951e190b7f
feat: add autopair and brackets
also make non italic :)
2026-01-10 16:04:41 +01:00

35 lines
873 B
Lua

return {
{
"scottmckendry/cyberdream.nvim",
lazy = false,
priority = 1000,
config = function()
require("cyberdream").setup({
transparent = true,
borderless_pickers = false,
terminal_colors = true,
})
--vim.cmd("colorscheme cyberdream")
end,
},
{
"rose-pine/neovim",
name = "rose-pine",
config = function()
require("rose-pine").setup({
extend_background_behind_borders = false,
enable = {
terminal = true,
legacy_highlights = true, -- Improve compatibility for previous versions of Neovim
migrations = true, -- Handle deprecated options automatically
},
styles = {
bold = true,
italic = false,
transparency = false,
},
})
vim.cmd("colorscheme rose-pine-main")
end,
},
}