You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
585 B
Lua

return {
-- The colorscheme of choice
{
'sainnhe/gruvbox-material',
lazy = false,
priority = 1000,
config = function()
vim.opt.background = 'dark'
vim.opt.termguicolors = true
vim.g.gruvbox_material_better_performance = 1
vim.g.gruvbox_material_enable_italic = 1
vim.g.gruvbox_material_enable_bold = 1
vim.cmd.colorscheme('gruvbox-material')
vim.cmd.language('en_US.UTF-8')
end
},
-- Libraries, icons and shared usage
{ 'nvim-lua/plenary.nvim', lazy = true },
{ 'nvim-tree/nvim-web-devicons', lazy = true },
}