From c768d8e199039f84be6392ac5e4b9490e880cb86 Mon Sep 17 00:00:00 2001 From: Maxim Kovgan Date: Fri, 11 Jul 2014 11:05:17 +0300 Subject: [PATCH] setting default editor to /usr/bin/vim. sorry mac users --- template/bash_profile.template.bash | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/template/bash_profile.template.bash b/template/bash_profile.template.bash index 60cac9ea..5128850d 100644 --- a/template/bash_profile.template.bash +++ b/template/bash_profile.template.bash @@ -17,8 +17,8 @@ export BASH_IT_THEME='bobby' export GIT_HOSTING='git@git.domain.com' # Set my editor and git editor -export EDITOR="/usr/bin/mate -w" -export GIT_EDITOR='/usr/bin/mate -w' +export EDITOR='/usr/bin/vim' +export GIT_EDITOR='/usr/bin/vim' # Set the path nginx export NGINX_PATH='/opt/nginx'