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

{ callPackage, wrapNeovim, neovim-unwrapped, vimPlugins, ... }:
let
lib = import ./lib.nix;
plugins = [
(callPackage ./syntax { })
];
in
wrapNeovim neovim-unwrapped {
withPython3 = false;
withNodeJs = false;
withRuby = false;
configure = {
customRC = lib.mkLuaRc (lib.extractAttrs "luaConfig" plugins);
packages.myVimPackages =
{ start = lib.extractAttrs "plugins" plugins; };
};
}