-
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.
Answered by
BirdeeHub
Jun 18, 2024
Replies: 1 comment 3 replies
-
kickstart.nvim implemented using the lazy wrapper with tips along the way as a tutorial |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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