16 lines
338 B
Lua
16 lines
338 B
Lua
require("gruvbox").setup({
|
|
invert_selection = true,
|
|
contrast = "hard", -- can be "hard", "soft" or empty string
|
|
})
|
|
|
|
function ColorMyPencils(color)
|
|
color = color or "gruvbox"
|
|
vim.cmd.colorscheme(color)
|
|
|
|
vim.api.nvim_set_hl(0, "Normal", { bg = "none" })
|
|
vim.api.nvim_set_hl(0, "NormalFloat", { bg = "none" })
|
|
|
|
end
|
|
|
|
ColorMyPencils()
|