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

@ -768,6 +768,7 @@ require('lazy').setup({
require 'sld.gruvbox',
require 'sld.tree',
require 'sld.lualine',
require 'sld.autopairs',
-- NOTE: The import below can automatically add your own plugins, configuration, etc from `lua/custom/plugins/*.lua`
-- This is the easiest way to modularize your config.
--

View file

@ -69,3 +69,5 @@ vim.opt.confirm = true
vim.o.guicursor = 'a:block-Cursor/lCursor-blinkwait1000-blinkon100-blinkoff100'
vim.opt.termguicolors = true
vim.opt.wrap = false

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
}