fcc4259cdb
* ranger: stub tests * alacritty: stub tests * broot: stub tests * zsh: stub tests * vim-vint: stub tests
17 lines
326 B
Nix
17 lines
326 B
Nix
{ ... }:
|
|
|
|
{
|
|
imports = [ ./zsh-stubs.nix ];
|
|
|
|
programs.zsh.zsh-abbr = {
|
|
enable = true;
|
|
abbreviations = { ga = "git add"; };
|
|
};
|
|
|
|
nmt.script = ''
|
|
abbreviations=home-files/.config/zsh-abbr/user-abbreviations
|
|
|
|
assertFileExists $abbreviations
|
|
assertFileContains $abbreviations "abbr ga='git add'"
|
|
'';
|
|
}
|