- `git-auto-commit-mode` for Emacs
- different ZSH prompt for Emacs TRAMP mode
- CI test
This commit is contained in:
Andrea Ciceri 2022-06-05 16:11:01 +02:00
parent d99fd6a3e6
commit 0db5318ffe
No known key found for this signature in database
GPG key ID: A1FC89532D1C5654
3 changed files with 10 additions and 1 deletions

View file

@ -60,6 +60,9 @@
if pkgs.stdenv.hostPlatform.isDarwin
then "if test -e /etc/static/bashrc; then source /etc/static/bashrc > /dev/null 2>&1; fi"
else "";
envExtra = ''
[ $TERM = "dumb" ] && unsetopt zle && PS1='$ ' # for Emacs TRAMP mode
'';
};
programs.command-not-found.enable = true;