Selaa lähdekoodia

Set vim as the default editor.

Emmanuel Bouthenot 14 vuotta sitten
vanhempi
commit
9a32a1070f
1 muutettua tiedostoa jossa 5 lisäystä ja 2 poistoa
  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
 
 #