Files
dotfiles/vim/.vim/lua/plugins/themes-personal.lua
Christian Nieves f9acecd558 Neotree fig
2024-07-05 21:10:23 +00:00

68 lines
1.9 KiB
Lua

local use_google = require("utils").use_google
return {
{
"bluz71/vim-moonfly-colors",
name = "moonfly",
cond = not use_google(),
lazy = false,
priority = 1000,
config = function()
vim.cmd("colorscheme moonfly")
end,
},
{
"sainnhe/sonokai",
-- 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")
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,
config = function()
vim.cmd("colorscheme oxocarbon")
end,
},
{
"uloco/bluloco.nvim",
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 = false,
config = function()
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 = false,
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,
},
}