otavioschwanck / mood-nvim

A Neovim configuration for Rails and Javascript
95 stars 12 forks source link

How to add plugins? #13

Closed Rinyaresu closed 1 year ago

Rinyaresu commented 1 year ago

How can I integrate plugins in this new setup?

I am encountering an issue where Lazy is unable to locate the plugins present in the path extra/examples/plugins.lua.

otavioschwanck commented 1 year ago

First of all, remove everything from packer:

rm -rf ~/.config/nvim/lua/user/lsp.lua

rm -rf ~/.config/nvim/lua/user/plugins.lua

rm -rf ~/.config/nvim/plugin/packer_compiled.lua

rm -rf ~/.local/share/nvim

Then, open neovim (lazy will install the plugins).

After that, press SPC f p and go to plugins.

There will be some examples there.

To see the syntax, visit: https://github.com/folke/lazy.nvim

Rinyaresu commented 1 year ago

thx