This repository has been archived on 2024-05-17. You can view files and clone it, but cannot push or open issues or pull requests.
neovim/default.nix

23 lines
421 B
Nix
Raw Normal View History

2022-09-15 09:57:11 +03:00
{ callPackage, wrapNeovim, neovim-unwrapped, vimPlugins, ... }:
2022-09-15 01:29:25 +03:00
2022-09-15 09:57:11 +03:00
let
lib = import ./lib.nix;
plugins = [
(callPackage ./syntax { })
];
in
2022-09-15 01:29:25 +03:00
wrapNeovim neovim-unwrapped {
withPython3 = false;
withNodeJs = false;
withRuby = false;
configure = {
2022-09-15 09:57:11 +03:00
customRC = lib.mkLuaRc (lib.extractAttrs "luaConfig" plugins);
2022-09-15 01:29:25 +03:00
packages.myVimPackages =
2022-09-15 09:57:11 +03:00
{ start = lib.extractAttrs "plugins" plugins; };
2022-09-15 01:29:25 +03:00
};
}