Cleanup and switched to dot- prefix now that stow has been fixed
This commit is contained in:
24
nvim/dot-config/nvim/lua/themes/gruvbox.lua
Normal file
24
nvim/dot-config/nvim/lua/themes/gruvbox.lua
Normal file
@@ -0,0 +1,24 @@
|
||||
-- https://github.com/ellisonleao/gruvbox.nvim
|
||||
return {
|
||||
'ellisonleao/gruvbox.nvim',
|
||||
commit = "487598d979868224aff92cf8818195c1a60e5dfe", -- Commit before things start breaking
|
||||
priority = 1000,
|
||||
config = function()
|
||||
local config = require("gruvbox").config
|
||||
local colors = require("gruvbox.palette").get_base_colors(vim.o.background, config.contrast)
|
||||
|
||||
require('gruvbox').setup {
|
||||
background = "dark",
|
||||
italic = {
|
||||
strings = false,
|
||||
},
|
||||
overrides = {
|
||||
YankHighlight = { fg = colors.blue, bg = colors.bg0, reverse = config.inverse },
|
||||
IncSearch = { fg = colors.aqua },
|
||||
Search = { fg = colors.aqua },
|
||||
}
|
||||
}
|
||||
|
||||
vim.cmd.colorscheme 'gruvbox'
|
||||
end,
|
||||
}
|
||||
Reference in New Issue
Block a user