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

30 lines
584 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;
callPlugins = list: builtins.map (p: callPackage p { }) list;
plugins = callPlugins [
./syntax
./explorer
./theme
2022-09-16 09:59:25 +03:00
./lsp
2022-09-15 09:57:11 +03:00
];
basicConfig = builtins.readFile ./basic.lua;
2022-09-15 09:57:11 +03:00
in
2022-09-15 01:29:25 +03:00
wrapNeovim neovim-unwrapped {
withPython3 = false;
withNodeJs = false;
withRuby = false;
configure = {
customRC = lib.mkLuaRc ([ basicConfig ] ++ 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
};
}