added gruvbox material

This commit is contained in:
Oliver Hartmann
2023-01-24 17:36:44 +01:00
parent 7d318b2512
commit 4f5bd49e70
3 changed files with 21 additions and 2 deletions

View File

@@ -0,0 +1,18 @@
return {
'sainnhe/gruvbox-material',
priority = 1000,
config = function()
-- local colors = require('gruvbox.colors')
-- vim.g.gruvbox_flat_style = "dark"
-- vim.g.gruvbox_colors = {
-- bg_search = 'purple',
-- fg_search = 'black',
-- }
-- vim.g.gruvbox_theme = {
-- Pmenu = { bg = 'bg_visual' },
-- NormalFloat = { bg = 'bg_visual' }
-- }
-- vim.g.gruvbox_dark_float = false
vim.cmd('colorscheme gruvbox-material')
end
}