From 0d637dec3dd64b1c97fd42905b3b830be1d66956 Mon Sep 17 00:00:00 2001 From: brettlangdon Date: Tue, 19 Jun 2018 11:20:35 -0400 Subject: [PATCH] Fix EDITOR and VISUAL env variables --- zshrc.d/.env.zsh | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/zshrc.d/.env.zsh b/zshrc.d/.env.zsh index b79ff97..4223f35 100644 --- a/zshrc.d/.env.zsh +++ b/zshrc.d/.env.zsh @@ -3,11 +3,10 @@ export LANG=en_US.UTF-8 export TERM="xterm-256color" export ACK_PAGER_COLOR="less -x4SRFX" -# Configure emacs as default editor # Configure emacs as default editor export GIT_EDITOR="emacs -nw -Q" -export VISUAL="emacs" -export EDITOR="emacs" +export VISUAL="emacs -nw -Q" +export EDITOR="emacs -nw -Q" # Configure Go export GOPATH=~/go