dotfiles/nvim/.config/nvim/lua/plugins/theme.lua

12 lines
260 B
Lua

vim.pack.add({"https://github.com/ellisonleao/gruvbox.nvim"})
require("gruvbox").setup({
contrast = "hard",
transparent_mode = true,
})
vim.cmd("colorscheme gruvbox")
-- TODO: Is this necessary?
-- vim.api.nvim_set_hl(0, "NormalFloat", { bg = "none" })