Browse Source

Fix EDITOR and VISUAL env variables

master
Brett Langdon 8 years ago
parent
commit
0d637dec3d
No known key found for this signature in database GPG Key ID: B664881177781B04
1 changed files with 2 additions and 3 deletions
  1. +2
    -3
      zshrc.d/.env.zsh

+ 2
- 3
zshrc.d/.env.zsh View File

@ -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


Loading…
Cancel
Save