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", "ux", toggle_hues, { desc = "Toggle Hues Theme" }) end, }, }