configs/nvim/lua/plugins/themes.lua
Kacper Marzecki 817d3269d6 reorg nvim
2025-10-14 18:18:07 +02:00

48 lines
1.1 KiB
Lua

return {
{
"folke/tokyonight.nvim",
lazy = false,
priority = 1000,
opts = {},
},
{
"nyoom-engineering/oxocarbon.nvim",
-- Add in any other configuration;
-- event = foo,
-- config = bar
-- end,
},
{ "Mofiqul/vscode.nvim" },
{
"rebelot/kanagawa.nvim",
opts = {
theme = "lotus",
background = {
dark = "lotus",
light = "lotus",
},
},
},
-- -- Configure default theme
-- {
-- "LazyVim/LazyVim",
-- opts = {
-- colorscheme = "kanagawa-lotus",
-- },
-- },
"Mofiqul/vscode.nvim",
{
"nvim-mini/mini.hues",
version = "*",
config = function()
-- the theme I like
require("mini.hues").setup({ background = "#002923", foreground = "#c0c9c7", n_hues = 2 })
-- ^ the above doesnt load on startup, lets make a toggle function and keymap
local function toggle_hues()
require("mini.hues").setup({ background = "#002923", foreground = "#c0c9c7", accent = "green", n_hues = 2 })
end
vim.keymap.set("n", "<leader>ux", toggle_hues, { desc = "Toggle Hues Theme" })
end,
},
}