orhnk / vimacs

Feature-full Neovim Experience - With Emacs, JetBrains features OOTB
GNU General Public License v3.0
324 stars 8 forks source link

External plugins are not loaded #33

Closed amsynist closed 1 month ago

amsynist commented 7 months ago

I attempted to integrate additional plugins, namely noice.nvim, barbecure.nvim, and mini.nvim. I included them at the end of the custom/plugins.lua file. Although the plugins were successfully downloaded after restarting Neovim, I encountered issues. The anticipated notifications from noice, breadcrumbs from barbecure, and various features from mini, expected to be available immediately post-installation, are conspicuously absent.

The screenshots illustrate the absence of notifications and features that should be visible right after installation.

Screenshot 2024-01-25 at 8 08 00 PM Screenshot 2024-01-25 at 8 10 39 PM

The plugins were added in the manner depicted in the images, both in the custom/plugins.lua file and in the default plugins file.

Screenshot 2024-01-25 at 8 11 45 PM

However, despite successful installation of the plugins, the anticipated functionalities, such as the :Barbecue command from barbecure, remain unavailable. This is particularly perplexing as per the documentation, it should work seamlessly with the default nvChad configuration.

orhnk commented 7 months ago

Vimacs loads your plugins lazily which is opted for performance.

What you're doing doesn't give any information about a "hook" that tells vimacs how to load your plugin.

You should refer to lazy.nvim docs or look at the prior code that I've written.