Zum Hauptinhalt springen
Version: 1.3

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

You can find all available options here or in lunarvim: :help lazy.nvim-plugin-spec You can find more examples here

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