restructured nvim config

This commit is contained in:
pika 2024-08-18 13:51:43 +02:00
parent 22d4936a21
commit 6bb0e86ded
9 changed files with 148 additions and 147 deletions

View file

@ -1,37 +1,32 @@
return {
{ "rose-pine/neovim" },
{ "sontungexpt/witch" },
{ "folke/tokyonight.nvim" },
{ "rose-pine/neovim" },
{ "sontungexpt/witch" },
{ 'AlexvZyl/nordic.nvim' },
{
"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,
},
{
"eldritch-theme/eldritch.nvim",
lazy = false,
opts = {},
}
{ "eldritch-theme/eldritch.nvim" },
{
"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,
},
}