style: update colorscheme

This commit is contained in:
Simon Lasbrugnas 2025-01-26 04:10:39 +01:00
parent 4c35d24bcd
commit 29b62eb72f
Signed by untrusted user who does not match committer: simon
GPG key ID: 86039876BA6ED8DE
2 changed files with 39 additions and 6 deletions

View file

@ -22,7 +22,5 @@ require("lazy").setup({ import = "custom/plugins" }, {
},
})
vim.cmd([[colorscheme mellow]])
-- Modify Comment highlight group to remove italics
vim.cmd([[hi Comment cterm=NONE gui=NONE]])

View file

@ -1,6 +1,41 @@
return {
"xero/miasma.nvim",
{ "rose-pine/neovim", name = "rose-pine" },
"cocopon/iceberg.vim",
{
"mellow-theme/mellow.nvim",
lazy = false,
priority = 1000,
init = function()
-- vim.cmd("colorscheme mellow")
end
},
{
"kvrohit/rasmus.nvim",
priority = 1000,
init = function()
vim.g.rasmus_transparent = true
vim.g.rasmus_italic_comments = false
vim.cmd("colorscheme rasmus")
end
},
{
"slugbyte/lackluster.nvim",
lazy = false,
priority = 1000,
opts = {
tweak_syntax = {
comment = "#5a5a5a",
},
},
init = function()
-- vim.cmd("colorscheme lackluster-night")
end
},
{
'comfysage/evergarden',
opts = {},
lazy = false,
priority = 1000,
init = function()
-- vim.cmd("colorscheme evergarden")
end
}
}