BirdeeHub / nixCats-nvim

A framework for configuring neovim like neovim via nix, and having multiple config profiles. (with example config(s) and in-editor help)
https://nixcats.org/nixCats_installation.html
MIT License
267 stars 11 forks source link

added support for home manager module syntax for plugins #27

Closed BirdeeHub closed 4 months ago

BirdeeHub commented 4 months ago
    with pkgs.vimPlugins; [
      derivation
      # you may add a plugin to a category list in any of these ways
      # all the following options can accept an optional = bool;
      # to override its presence in either startupPlugins or optionalPlugins
      { plugin = derivation; config.vim = ""; config.lua = ""; }
      { plugin = derivation; config = ""; type = "<viml or lua>"; }
      { plugin = derivation; config = ""; } # defaults to viml
      { plugin = derivation; }
    ]