nvim/lua/plugins/theme.lua

38 lines
997 B
Lua
Raw Normal View History

2022-12-31 17:43:31 +01:00
local M = {
2023-02-28 19:44:10 +01:00
url = 'https://git.filnar.com/filnar/neogruber.nvim.git',
2023-02-21 21:48:06 +01:00
lazy = false,
2022-12-31 17:43:31 +01:00
}
function M.config()
2023-02-21 21:48:06 +01:00
require('neogruber').setup {
borders = true, -- Split window borders
fade_nc = true, -- Fade non-current windows, making them more distinguishable
-- Style that is applied to various groups: see `highlight-args` for options
styles = {
comments = 'italic',
strings = 'NONE',
keywords = 'NONE',
functions = 'NONE',
variables = 'NONE',
diagnostics = 'underline',
storage_class = 'italic',
structure = 'NONE',
loop_cond = 'bold',
builtin = 'NONE',
},
2023-02-21 21:48:06 +01:00
disable = {
background = true, -- Disable setting the background color
cursorline = false, -- Disable the cursorline
eob_lines = true, -- Hide the end-of-buffer lines
},
-- Inverse highlight for different groups
inverse = {
match_paren = true,
},
2023-02-21 21:48:06 +01:00
custom_highlights = {}, -- Overwrite default highlight groups
custom_colors = {}, -- Overwrite default colors
2022-12-31 17:43:31 +01:00
}
end
return M