2
0
mirror of https://github.com/webgefrickel/dotfiles synced 2024-11-09 13:10:27 +00:00
steffen-dotfiles/.config/nvim/lua/plugins.lua

22 lines
585 B
Lua
Raw Normal View History

2024-07-11 10:09:38 +00:00
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 },
}