splitting up config, styling with gruvbox

This commit is contained in:
thereclaimer 2025-04-02 14:55:27 -05:00
parent 188bb5a3de
commit 4d8445450e
11 changed files with 999 additions and 1022 deletions

20
lua/sld/style.lua Normal file
View file

@ -0,0 +1,20 @@
require('gruvbox-material').setup {
italics = false, -- enable italics in general
contrast = 'hard', -- set contrast, can be any of "hard", "medium", "soft"
comments = {
italics = false,
},
background = {
transparent = true, -- set the background to transparent
},
float = {
force_background = false, -- force background on floats even when background.transparent is set
background_color = nil, -- set color for float backgrounds. If nil, uses the default color set
-- by the color scheme
},
signs = {
highlight = true, -- whether to highlight signs
},
customize = nil, -- customize the theme in any way you desire, see below what this
-- configuration accepts
}