浏览代码

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
 
 #