mirror of
https://github.com/nix-community/home-manager.git
synced 2025-03-31 04:04:32 +00:00
make test TEST=neovim-plugin-config - would previously use `-u` which we precisely want to avoid relying on because of side-effects. Likewise, `-es` skips some initialization phase (see `:h startup`). - Instead of several stdout redirections, write to a file directly. - also logs more via -V3$out/log.txt to help debug
31 lines
816 B
Nix
31 lines
816 B
Nix
{ config, lib, pkgs, realPkgs, ... }:
|
|
|
|
lib.mkIf config.test.enableBig {
|
|
programs.neovim = {
|
|
enable = true;
|
|
extraConfig = ''
|
|
let g:hmExtraConfig='HM_EXTRA_CONFIG'
|
|
'';
|
|
plugins = with pkgs.vimPlugins; [
|
|
vim-nix
|
|
{
|
|
plugin = vim-commentary;
|
|
config = ''
|
|
let g:hmPlugins='HM_PLUGINS_CONFIG'
|
|
'';
|
|
}
|
|
];
|
|
extraLuaPackages = [ pkgs.lua51Packages.luautf8 ];
|
|
};
|
|
|
|
_module.args.pkgs = lib.mkForce realPkgs;
|
|
|
|
nmt.script = ''
|
|
vimout=$out/nvim-output
|
|
export HOME=$TESTED/home-files
|
|
${pkgs.neovim-unwrapped}/bin/nvim -i NONE -V3$out/log.txt +"redir >> $vimout | echo g:hmExtraConfig | echo g:hmPlugins | redir END" +'exit'
|
|
assertFileContains "$vimout" "HM_EXTRA_CONFIG"
|
|
assertFileContains "$vimout" "HM_PLUGINS_CONFIG"
|
|
'';
|
|
}
|
|
|