switched to dentritic pattern and cleaned up config

This commit is contained in:
2026-08-30 13:24:46 +02:00
parent 325f4a0e0c
commit 47325d4031
133 changed files with 565 additions and 1865 deletions
@@ -0,0 +1,61 @@
return {
{
'catppuccin/nvim',
as = 'catppuccin',
enabled = false,
config = function()
require("catppuccin").setup {
flavour = "mocha",
transparent_background = true
}
vim.cmd [[ colorscheme catppuccin ]]
end
},
{
'EdenEast/nightfox.nvim',
enabled = false,
config = function()
require('nightfox').setup {
options = { transparent = true }
}
vim.cmd [[ colorscheme nightfox ]]
end,
},
{
'navarasu/onedark.nvim',
enabled = false,
config = function()
require('onedark').setup {
transparent = true,
lualine = {
transparent = true
}
}
vim.cmd [[ colorscheme onedark ]]
end
},
{
'shaunsingh/nord.nvim',
enabled = false,
config = function()
vim.g.nord_disable_background = true
vim.cmd [[colorscheme nord]]
end
},
{
'rmehri01/onenord.nvim',
enabled = true,
config = function()
require('onenord').setup({
disable = {
background = true, -- Disable setting the background color
float_background = true, -- Disable setting the background color for floating windows
cursorline = true, -- Disable the cursorline
eob_lines = true, -- Hide the end-of-buffer lines
}
})
end
}
}