summaryrefslogtreecommitdiff
path: root/config/default.nix
blob: ece45ef3c357168bc86b51b149fe0a90ede005e0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
  lib,
  vimUtils,
  version,
}:
vimUtils.buildVimPlugin {
  pname = "neovim-config";
  inherit version;

  src = lib.fileset.toSource {
    root = ./.;
    fileset = lib.fileset.unions [
      ./after
      ./ftdetect
      ./lua
      ./plugin
    ];
  };
}