styling options, added stub function for customizing gruvbox

This commit is contained in:
Sam Davenport 2025-04-04 17:33:47 -05:00
parent d27359351c
commit f3ec45204f
5 changed files with 7 additions and 1 deletions

View file

@ -1,3 +1,5 @@
local colors = require('gruvbox-material.colors').get(vim.o.background, 'hard')
require('gruvbox-material').setup {
italics = false, -- enable italics in general
contrast = 'hard', -- set contrast, can be any of "hard", "medium", "soft"
@ -15,7 +17,7 @@ require('gruvbox-material').setup {
signs = {
highlight = true, -- whether to highlight signs
},
customize = nil, -- customize the theme in any way you desire, see below what this
customize = funtion(str_group, opt_table) {},
-- configuration accepts
}