starter/lua/plugins/colorscheme.lua

58 lines
1.4 KiB
Lua
Raw Normal View History

return {
-- add gruvbox
2023-11-15 00:30:08 +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
{ "savq/melange-nvim" },
{ "Mofiqul/vscode.nvim" },
2023-11-15 00:30:08 +08:00
-- { "catppuccin/nvim" },
2023-11-08 03:04:43 +08:00
-- { "shaunsingh/solarized.nvim" },
2023-11-15 00:30:08 +08:00
-- { "maxmx03/solarized.nvim" },
-- {
-- "folke/tokyonight.nvim",
-- lazy = false,
-- priority = 1000,
-- opts = {},
-- },
{
"LazyVim/LazyVim",
opts = {
2023-11-15 00:30:08 +08:00
colorscheme = "gruvbox",
2023-11-08 03:04:43 +08:00
-- colorscheme = "melange",
2023-11-15 00:30:08 +08:00
-- colorscheme = "tokyonight",
2023-11-06 19:34:34 +08:00
-- colorscheme = "night-owl",
2023-11-09 23:29:54 +08:00
-- transparent = true,
},
},
}