diff options
author | Franck Cuny <franckcuny@gmail.com> | 2015-07-18 21:20:41 -0700 |
---|---|---|
committer | Franck Cuny <franckcuny@gmail.com> | 2015-07-18 21:21:25 -0700 |
commit | 0b96dc607a9acca1f68e864697f8d8d18690f5f7 (patch) | |
tree | c28dfeb2a8b445dac3c4eb0573872373c160ddff | |
parent | [emacs] add more things for emacs (diff) | |
download | emacs.d-0b96dc607a9acca1f68e864697f8d8d18690f5f7.tar.gz |
[bash] update $EDITOR.
Diffstat (limited to '')
-rw-r--r-- | bashrc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bashrc b/bashrc index a176073..e5c1efd 100644 --- a/bashrc +++ b/bashrc @@ -1,5 +1,5 @@ export TERM=xterm-256color -export EDITOR="emacsclient -a enacs -n" +export EDITOR="emacsclient -a enacs -nw" export HISTFILE= export LANG="en_US.UTF-8" export LC_ALL="$LANG" @@ -58,7 +58,7 @@ alias mv="mv -i" alias rm="rm -i" alias e="$EDITOR" -alias em="emacsclient -a emacs -nw" +alias em="emacsclient -a emacs -n" alias g="git" alias gclean="git clean -dfx" |