sainnhe / gruvbox-material

Gruvbox with Material Palette
MIT License
1.9k stars 164 forks source link

[question] How to install on LunarVim? #163

Closed yozachar closed 1 year ago

yozachar commented 1 year ago

How do I install this theme with Packer in LuaVim?

antoineco commented 1 year ago

@joe733 the procedure is described in LunarVim's docs:

User plugins can be installed by adding entries to the lvim.plugins table in your config.lua file, and saving or manually invoking LvimReload will trigger Packer to sync all the plugins in that table.

lvim.plugins = {
 {"lunarvim/colorschemes"},
 {"folke/tokyonight.nvim"},
}

For Gruvbox Material, simply add sainnhe/gruvbox-material to that list.

yozachar commented 1 year ago

Oh, it worked. Thank you!