This commit is contained in:
Christian Nieves
2024-02-10 22:51:15 -06:00
parent e4926e135c
commit 27955c4f97
4 changed files with 27 additions and 11 deletions

View File

@ -12,16 +12,6 @@ return {
end,
},
{
"rebelot/kanagawa.nvim",
lazy = use_google(), -- make sure we load this during startup if it is your main colorscheme
priority = 1000, -- make sure to load this before all the other start plugins
-- cond = not use_google(),
config = function()
-- vim.cmd("colorscheme kanagawa-wave")
end,
},
{
"nyoom-engineering/oxocarbon.nvim",
lazy = use_google(), -- make sure we load this during startup if it is your main colorscheme
priority = 1000, -- make sure to load this before all the other start plugins
cond = false,
@ -39,4 +29,28 @@ return {
vim.cmd("colorscheme bluloco")
end,
},
{
"EdenEast/nightfox.nvim",
lazy = use_google(), -- make sure we load this during startup if it is your main colorscheme
priority = 1000, -- make sure to load this before all the other start plugins
cond = not use_google(),
config = function()
-- vim.cmd("colorscheme nightfox")
-- vim.cmd("colorscheme carbonfox")
-- vim.cmd("colorscheme terafox")
vim.cmd("colorscheme duskfox")
-- vim.cmd("colorscheme nordfox")
-- vim.cmd("colorscheme dayfox")
-- vim.cmd("colorscheme dawnfox")
end,
},
{
"rebelot/kanagawa.nvim",
lazy = use_google(), -- make sure we load this during startup if it is your main colorscheme
priority = 1000, -- make sure to load this before all the other start plugins
cond = false,
config = function()
vim.cmd("colorscheme kanagawa-wave")
end,
},
}