35 lines
795 B
Lua
35 lines
795 B
Lua
return {
|
|
{
|
|
"folke/tokyonight.nvim",
|
|
lazy = false,
|
|
priority = 1000,
|
|
opts = {},
|
|
},
|
|
{
|
|
"nyoom-engineering/oxocarbon.nvim",
|
|
},
|
|
{ "Mofiqul/vscode.nvim" },
|
|
{
|
|
"rebelot/kanagawa.nvim",
|
|
opts = {
|
|
theme = "wave",
|
|
background = {
|
|
dark = "wave",
|
|
light = "wave",
|
|
},
|
|
},
|
|
},
|
|
"Mofiqul/vscode.nvim",
|
|
{
|
|
"nvim-mini/mini.hues",
|
|
version = "*",
|
|
config = function()
|
|
require("mini.hues").setup({ background = "#002923", foreground = "#c0c9c7", n_hues = 2 })
|
|
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,
|
|
},
|
|
}
|