35 lines
867 B
Lua
35 lines
867 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 = true,
|
|
transparency = true,
|
|
}
|
|
})
|
|
vim.cmd("colorscheme rose-pine-main")
|
|
end
|
|
}
|
|
}
|