starter/lua/plugins/colorscheme.lua

63 lines
1.5 KiB
Lua
Raw Normal View History

return {
-- add gruvbox
2024-07-28 07:28:22 +08:00
{
"ellisonleao/gruvbox.nvim",
priority = 1000,
config = true,
opts = function()
return {
terminal_colors = true, -- add neovim terminal colors
undercurl = true,
underline = true,
bold = true,
italic = {
strings = true,
emphasis = true,
comments = true,
operators = false,
folds = true,
},
strikethrough = true,
invert_selection = false,
invert_signs = false,
invert_tabline = false,
invert_intend_guides = false,
inverse = true, -- invert background for search, diffs, statuslines and errors
contrast = "hard", -- can be "hard", "soft" or empty string
palette_overrides = {},
overrides = {},
dim_inactive = false,
transparent_mode = false,
}
end,
},
-- { "tanvirtin/monokai.nvim" },
-- Configure LazyVim to load gruvbox
2024-01-06 07:44:50 +08:00
-- { "savq/melange-nvim" },
-- -- { "Mofiqul/vscode.nvim" },
2023-11-15 00:30:08 +08:00
-- { "catppuccin/nvim" },
2024-01-06 07:44:50 +08:00
-- { "sainnhe/sonokai" },
2023-11-15 00:30:08 +08:00
-- { "maxmx03/solarized.nvim" },
-- {
2024-01-06 07:44:50 +08:00
--
-- "yorik1984/newpaper.nvim",
-- },
-- {
2023-11-15 00:30:08 +08:00
-- "folke/tokyonight.nvim",
-- lazy = false,
-- priority = 1000,
-- opts = {},
-- },
2024-01-06 07:44:50 +08:00
{ "rose-pine/neovim" },
{
"LazyVim/LazyVim",
opts = {
2024-01-06 07:44:50 +08:00
-- colorscheme = "gruvbox",
colorscheme = "solarized",
2023-11-15 00:30:08 +08:00
-- colorscheme = "tokyonight",
2023-11-06 19:34:34 +08:00
-- colorscheme = "night-owl",
2024-01-06 07:44:50 +08:00
transparent = true,
},
},
}