dotfiles

Personal dotfiles
git clone https://git.bracken.jp/dotfiles.git
Log | Files | Refs | LICENSE

commit c7c95ed28859fac6cbfdc4aab21c7a7f708835cf
parent 037e738e5956ee975fb9ab91ce33212e5a580c0d
Author: Chris Bracken <chris@bracken.jp>
Date:   Wed, 21 Nov 2018 16:27:57 -0800

Remove absolute path for EDITOR

This avoids having to deal with system-specific details such as whether
vim is coming from /usr/bin, /usr/local/bin, or a custom install.

Diffstat:
M.zshrc | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.zshrc b/.zshrc @@ -1,7 +1,7 @@ # .zshrc # Environment vars -export EDITOR=/usr/bin/vim +export EDITOR=vim export GNUPGHOME="$HOME/.gnupg" export GOMA_DIR="$HOME/src/goma"