Quickly Reload Your Neovim Config
Tired of quitting and restarting Neovim every time you tweak your config? There’s a better way! By separating your plugin declarations and configurations, you can quickly reload changes without the hassle. The key is to put your plugin declarations (everything needed to load the plugin) in one file, and the actual configuration in another. For example, let’s look at the zen-mode plugin: Your lua/custom/plugin/zen-mode.lua file would contain the plugin declaration:...