mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-10 06:22:56 +00:00
41d289c5db
preparing for light mode, even though specializations aren't working
15 lines
281 B
Lua
15 lines
281 B
Lua
local M = {}
|
|
|
|
M.packer = function(use)
|
|
use({
|
|
"lifepillar/vim-gruvbox8",
|
|
config = function()
|
|
vim.g.gruvbox_italicize_strings = 0
|
|
vim.cmd("colorscheme gruvbox8")
|
|
vim.cmd("set background=dark")
|
|
end,
|
|
})
|
|
end
|
|
|
|
return M
|