Changing default editor to a more standard and cross-platform one i.e. vim

pull/146/head
Matthieu Fronton 2012-07-09 15:14:23 +02:00
parent 4df96400ab
commit 8e594f2edf
1 changed files with 2 additions and 2 deletions

View File

@ -17,8 +17,8 @@ export BASH_IT_THEME='bobby'
export GIT_HOSTING='git@git.domain.com' export GIT_HOSTING='git@git.domain.com'
# Set my editor and git editor # Set my editor and git editor
export EDITOR="/usr/bin/mate -w" export EDITOR="$(which vim)"
export GIT_EDITOR='/usr/bin/mate -w' export GIT_EDITOR="$(which vim)"
# Set the path nginx # Set the path nginx
export NGINX_PATH='/opt/nginx' export NGINX_PATH='/opt/nginx'