Managing Plugins using Lazy

After the installation of your init.vim file in your PATH/nvim directory and lazy-config.lua in your PATH/nvim/lua folder. It’s time to add a new file named plugins which is passed as an argument to our lazy-config.lua file so that it can load and install all the plugins separately. I will update the plugins.lua file accordingly after installing each plugin.

NOTE:-

The PATH mentioned above differs according to the Operating System.

  • Linux/ MacOS :- PATH refers to ~/ .config/
  • Windows :- PATH is .Appdata/local/

Folder Structure

Read More