-
I use Lazy.nvim for managing all my plugins, and it's very convenient how I can set up lazy load triggers and configuration for each plugin in it's own file. How exactly can I use nixCats-nvim with Lazy.nvim? I see https://github.com/BirdeeHub/nixCats-nvim/blob/main/nix/templates/luaUtils/lua/nixCatsUtils/lazyCat.lua but I don't know how to use it. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
kickstart.nvim implemented using the lazy wrapper with tips along the way as a tutorial |
Beta Was this translation helpful? Give feedback.
-
Quick update, the lazy wrapper is simpler now, it only needs the path to lazy as the first arg and the regular arguments to lazy.nvim setup after that now. It no longer needs an ignore list from nix. |
Beta Was this translation helpful? Give feedback.
also, lz.n just came out and its like lazy.nvim that only does loading and no downloading, so it doesnt need a wrapper. You can just put the thing in optionalPlugin and use lz.n to load it instead
https://github.com/nvim-neorocks/lz.n
Keep in mind, the example in their readme is for the home manger syntax, nixCats actually supports that syntax as well, but it was designed to allow you to do it right in your lua files in your normal lua config, so just stick the plugin in optionalPlugins and then go stick the require('lz.n').load statements somewhere in your config