nvim/lua/pika/plugins/colorschemes.lua
2024-08-12 17:53:51 +02:00

46 lines
1.3 KiB
Lua

return {
{
"sontungexpt/witch",
-- priority = 1000,
lazy = false,
config = function(_, opts)
require("witch").setup(opts)
end,
},
{ "savq/melange-nvim" },
{ "rose-pine/neovim" },
{
"ribru17/bamboo.nvim",
lazy = false,
-- priority = 1000, -- Make sure to load this before all the other start plugins.
config = function()
require("bamboo").setup({
-- ────────────────────────────< optional configuration here >─────────────────────────
code_style = {
comments = { italic = false, bold = true },
conditionals = { italic = true },
keywords = { bold = true },
functions = {},
namespaces = { italic = true },
parameters = { italic = true },
strings = {},
variables = { bold = true },
},
-- ─< Custom Highlights -- >────────────────────────────────────────────────────────────
colors = {}, -- Override default colors
highlights = { -- Override highlight groups
["@comment"] = { fg = "#555653" },
},
})
end,
},
{
"LazyVim/LazyVim",
opts = {
colorscheme = "melange",
},
},
}