zsh: configure auto-notify ignore settings

This commit is contained in:
Oliver Davies 2024-07-03 08:00:00 +01:00
parent 3de6b6cd33
commit b11055fd8e
2 changed files with 21 additions and 15 deletions

View file

@ -122,22 +122,11 @@
{ name = "zsh-users/zsh-syntax-highlighting"; }
];
};
sessionVariables = {
AUTO_NOTIFY_IGNORE = import ./zsh/auto-notify-ignore.nix;
};
};
home.file.".config/zsh-abbr/user-abbreviations".text = builtins.readFile ./zsh/abbreviations.zsh;
home.sessionVariables = {
AUTO_NOTIFY_IGNORE = builtins.concatStringsSep " " [
"git commit"
"htop"
"less"
"man"
"more"
"nix develop"
"nvim"
"ssh"
"tldr"
"watch"
];
};
}

View file

@ -0,0 +1,17 @@
[
"atuin"
"bat"
"cat"
"docker"
"git"
"htop"
"less"
"man"
"more"
"nix develop"
"nvim"
"ssh"
"t"
"tldr"
"watch"
]