diff options
author | Franck Cuny <fcuny@twitter.com> | 2019-09-27 13:20:26 -0700 |
---|---|---|
committer | Franck Cuny <fcuny@twitter.com> | 2019-09-27 13:20:26 -0700 |
commit | ae5597570279a32541d941824bdbab5d36d51897 (patch) | |
tree | c43d3311aa2fd05e49713a97d68dc8947485a26f /emacs | |
parent | [emacs] new package: ivy-rich (diff) | |
download | emacs.d-ae5597570279a32541d941824bdbab5d36d51897.tar.gz |
[emacs] add new alias for eshell (git status)
open a magit-status buffer when running `gs`.
Diffstat (limited to '')
-rw-r--r-- | emacs.d/custom/fcuny-eshell.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/emacs.d/custom/fcuny-eshell.el b/emacs.d/custom/fcuny-eshell.el index 0bf6547..113964c 100644 --- a/emacs.d/custom/fcuny-eshell.el +++ b/emacs.d/custom/fcuny-eshell.el @@ -15,6 +15,7 @@ (eshell/alias "emacs" "find-file $1") (eshell/alias "ee" "find-file-other-window $1") + (eshell/alias "gs" "magit-status") (eshell/alias "gd" "magit-diff-unstaged") (eshell/alias "gds" "magit-diff-staged") (eshell/alias "d" "dired $1")) |