Config
This commit is contained in:
parent
7201dc4801
commit
be36a60446
36 changed files with 800 additions and 7 deletions
33
lua/custom/plugins/gruv.lua
Normal file
33
lua/custom/plugins/gruv.lua
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
return {
|
||||
'ellisonleao/gruvbox.nvim',
|
||||
lazy = false,
|
||||
|
||||
config = function()
|
||||
require('gruvbox').setup {
|
||||
terminal_colors = false, -- 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 = true,
|
||||
}
|
||||
vim.o.background = 'dark'
|
||||
vim.cmd [[colorscheme gruvbox]]
|
||||
end,
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue