Getting Started
Editor
Plugin Management

Plugin Management: LazyNvim

How to add plugins

Go to ~/.config/nvim/lua/userconfig/ and put the plugin inside the Plugins table

plugins.lua
local Plugins = {
  -- DiscordRPC
  {
   'MeteorNvim/presence.nvim',
    config = function ()
      require("userconfig.config.presence")
    end
  },
}
 
return Plugins

Important

If you see that your plugins want to be cleaned by lazy after installing

You just have to close and open neovim for lazy to load the plugin correctly