소스 검색

Set vim as the default editor.

Emmanuel Bouthenot 14 년 전
부모
커밋
9a32a1070f
1개의 변경된 파일5개의 추가작업 그리고 2개의 파일을 삭제
  1. 5 2
      .zsh.d/config.d/alias.zsh

+ 5 - 2
.zsh.d/config.d/alias.zsh

@@ -4,11 +4,14 @@
 if -exe emacs; then
     export EDITOR='emacs -nw'
 fi
+if -exe vim; then
+    export EDITOR='vim'
+fi
+
+alias e=$EDITOR
 
 if [ -n "$EDITOR" -a -n "$SUDO_USER" -a "$UID" = 0 -a "$EDITOR[1,5]" = 'emacs' ]; then
     e="$EDITOR -u $SUDO_USER"
-else
-    alias e=$EDITOR
 fi
 
 #