This commit is contained in:
Christian Nieves
2024-01-12 20:52:25 -06:00
parent f1d6172101
commit 3f48940604
3 changed files with 50 additions and 41 deletions

View File

@ -3,6 +3,7 @@ local use_google = require("utils").use_google
return {
{
"sainnhe/sonokai",
cond = false,
config = function()
vim.g.sonokai_diagnostic_virtual_text = "highlighted"
vim.g.sonokai_style = "andromeda"
@ -14,18 +15,18 @@ return {
"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(),
cond = not use_google(),
config = function()
-- vim.cmd("colorscheme kanagawa-wave")
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 = not use_google(),
cond = false,
config = function()
-- vim.cmd("colorscheme oxocarbon")
vim.cmd("colorscheme oxocarbon")
end,
},
{
@ -33,9 +34,9 @@ return {
dependencies = { "rktjmp/lush.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(),
cond = false,
config = function()
-- vim.cmd("colorscheme bluloco")
vim.cmd("colorscheme bluloco")
end,
},
}