42 lines
1.5 KiB
Lua
42 lines
1.5 KiB
Lua
return { -- You can easily change to a different colorscheme.
|
|
-- Change the name of the colorscheme plugin below, and then
|
|
-- change the command in the config to whatever the name of that colorscheme is
|
|
--
|
|
-- If you want to see what colorschemes are already installed, you can use `:Telescope colorscheme`
|
|
'ellisonleao/gruvbox.nvim',
|
|
lazy = false, -- 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
|
|
opts = {
|
|
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 = "", -- can be "hard", "soft" or empty string
|
|
palette_overrides = {},
|
|
overrides = {},
|
|
dim_inactive = false,
|
|
transparent_mode = false,
|
|
},
|
|
config = function()
|
|
-- Load the colorscheme here
|
|
vim.cmd.colorscheme 'gruvbox'
|
|
vim.o.background = 'dark'
|
|
|
|
-- You can configure highlights by doing something like
|
|
vim.cmd.hi 'Comment gui=none'
|
|
end,
|
|
}
|
|
|