This commit is contained in:
Christian Nieves
2024-01-26 20:30:24 +00:00
parent ae0055a5db
commit 16fb43e7a2
6 changed files with 56 additions and 45 deletions

View File

@ -3,21 +3,21 @@ local use_google = require("utils").use_google
return {
{
"sainnhe/sonokai",
cond = false,
-- cond = false,
config = function()
vim.g.sonokai_diagnostic_virtual_text = "highlighted"
vim.g.sonokai_style = "andromeda"
vim.g.sonokai_dim_inactive_windows = 1
vim.cmd("colorscheme sonokai")
-- vim.cmd("colorscheme sonokai")
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(),
-- cond = not use_google(),
config = function()
vim.cmd("colorscheme kanagawa-wave")
-- vim.cmd("colorscheme kanagawa-wave")
end,
},
{