diff options
author | Thanos Apollo <[email protected]> | 2023-05-14 19:34:39 +0300 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2023-05-14 19:38:52 +0300 |
commit | 1417bcd9514d8183c94914a93930d91dcdec31c0 (patch) | |
tree | 7cd02368dec4a1dc1c2dfcb04c96c98d83c61861 /shells.org | |
parent | ada7791361be4130d58bbcc1e05d26b1c687b058 (diff) |
shells: Add emacsclient as $EDITOR and $GIT_EDITOR
Diffstat (limited to 'shells.org')
-rwxr-xr-x | shells.org | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -29,7 +29,7 @@ # weather alias weather="curl wttr.in" - alias ls='ls -la' + alias ls='ls -la --color' alias sb='sudo systemctl start bluetooth' alias mykeys='setxkbmap -option caps:escape' alias logout='pkill -U $USER' @@ -56,6 +56,9 @@ export SHELL export PATH + export EDITOR="emacsclient" + export GIT_EDITOR="emacsclient" + if [[ $- != *i* ]] then |