chore: themes and fixes

This commit is contained in:
VersusTuneZ 2026-01-05 22:03:03 +01:00
commit a7f28e9984
13 changed files with 37 additions and 114 deletions

View file

@ -1,42 +1,35 @@
return {
"rebelot/kanagawa.nvim",
config = function()
require("kanagawa").setup({
compile = true,
transparent = true,
colors = {
theme = {
all = {
ui = {
bg_gutter = "none",
float = {
bg = "none",
},
},
},
{
"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
},
},
overrides = function(colors)
local theme = colors.theme
return {
["@markup.link.url.markdown_inline"] = { link = "Special" }, -- (url)
["@markup.link.label.markdown_inline"] = { link = "WarningMsg" }, -- [label]
["@markup.italic.markdown_inline"] = { link = "Exception" }, -- *italic*
["@markup.raw.markdown_inline"] = { link = "String" }, -- `code`
["@markup.list.markdown"] = { link = "Function" }, -- + list
["@markup.quote.markdown"] = { link = "Error" }, -- > blockcode
["@markup.list.checked.markdown_inline"] = { link = "Error" }, -- - [X] checked list item
NormalFloat = { bg = "none" },
FloatBorder = { bg = "none" },
FloatTitle = { bg = "none" },
LazyNormal = { bg = theme.ui.bg_m3, fg = theme.ui.fg_dim },
MasonNormal = { bg = theme.ui.bg_m3, fg = theme.ui.fg_dim },
styles = {
bold = true,
italic = true,
transparency = true,
}
end,
})
vim.cmd("colorscheme kanagawa")
end,
build = function()
vim.cmd("KanagawaCompile")
end,
})
vim.cmd("colorscheme rose-pine-main")
end
}
}