From 8e594f2edfb453737784a3f4f5fd35458b20e885 Mon Sep 17 00:00:00 2001 From: Matthieu Fronton Date: Mon, 9 Jul 2012 15:14:23 +0200 Subject: [PATCH] Changing default editor to a more standard and cross-platform one i.e. vim --- 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..4926967a 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="$(which vim)" +export GIT_EDITOR="$(which vim)" # Set the path nginx export NGINX_PATH='/opt/nginx'