User plugins
User plugins can be installed by adding entries to the lvim.plugins
table in
your config.lua
file, saving or manually invoking LvimReload
will trigger
lazy to sync all the plugins in that table.
Example:
lvim.plugins = {
{ "lunarvim/colorschemes" },
{
"stevearc/dressing.nvim",
config = function()
require("dressing").setup({
input = { enabled = false },
})
end,
},
{
"nvim-neorg/neorg",
ft = "norg", -- lazy-load on filetype
config = true, -- run require("neorg").setup()
},
}
Check the example configurations for some suggestions.
tip
info
Removing a plugin from the lvim.plugins
table removes it from your configuration but not your system. To remove them completely, run :Lazy clean