removed lualine and addet witch-dark colorscheme. Also changed the way to install colorschemes + configs under ./lua/pika/plugins/colorschemes.lua

This commit is contained in:
pika 2024-07-30 18:39:46 +02:00
parent e69f225dfd
commit ebc341b853
8 changed files with 207 additions and 175 deletions

View file

@ -0,0 +1,38 @@
return {
{
"sontungexpt/witch",
priority = 1000,
lazy = false,
config = function(_, opts)
require("witch").setup(opts)
end,
},
{
"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" },
},
})
-- require("bamboo").load()
end,
},
}