Use GUI emacsclient for $EDITOR

This commit is contained in:
Jeremy Dormitzer 2019-02-06 19:13:03 -05:00
parent 4b6d1e2537
commit cb025bf3d0

View File

@ -27,6 +27,6 @@ then
eval "$(direnv hook bash)" eval "$(direnv hook bash)"
fi fi
alias edit='emacsclient -nw' alias edit="$(which emacsclient)"
EDITOR='emacsclient -nw' EDITOR="$(which emacsclient)"
export EDITOR export EDITOR