now that home-manager always generates an init.lua we can take the wrapper output instead of reimplemnting stuff in HM (notwithstanding rtp changes that are not needed in HM). This is necessary to keep the provider configuration available after this change https://github.com/NixOS/nixpkgs/pull/487390 Also updated test to reflect ruby disabling
12 lines
405 B
Nix
12 lines
405 B
Nix
{
|
|
neovim-plugin-config = ./plugin-config.nix;
|
|
neovim-coc-config = ./coc-config.nix;
|
|
neovim-runtime = ./runtime.nix;
|
|
neovim-wrapper-args = ./wrapper-args.nix;
|
|
|
|
# waiting for a nixpkgs patch
|
|
neovim-no-init-vim = ./no-init.nix;
|
|
neovim-extra-lua-init = ./extra-lua-init.nix;
|
|
neovim-extra-lua-default = ./extra-lua-default.nix;
|
|
neovim-extra-lua-empty-plugin = ./extra-lua-empty-plugin.nix;
|
|
}
|