aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMitch Riedstra <mitch@riedstra.us>2018-03-29 20:59:46 -0400
committerMitch Riedstra <mitch@riedstra.us>2018-03-29 20:59:46 -0400
commit2799bb7861773908a6c1870215ce87a6838671d9 (patch)
treefaa25b409f717353d22b74f0bc49583fe97317b3
parent24f6ade24a6e2a6f6037c81d5c1f18e1b33f4ebf (diff)
downloaddotfiles-2799bb7861773908a6c1870215ce87a6838671d9.tar.gz
dotfiles-2799bb7861773908a6c1870215ce87a6838671d9.tar.xz
quote gopath, change order of my editors and move gopath in front of the PATH
-rw-r--r--mkshrc6
1 files changed, 3 insertions, 3 deletions
diff --git a/mkshrc b/mkshrc
index 033ee50..eb03e26 100644
--- a/mkshrc
+++ b/mkshrc
@@ -452,10 +452,10 @@ SHELL_CONFIG=".mkshrc"
COLOR=0
MY_LANG="en_US.UTF-8"
-export EDITORS="ed vi vim nvim "
+export EDITORS="ed vi nvim vim "
export PATH="$HOME/bin:$PATH"
-export GOPATH=$HOME/go
-export PATH=$PATH:$GOPATH/bin
+export GOPATH="$HOME/go"
+export PATH="$GOPATH/bin:$PATH"
UPDATE_URL="https://www.rygel.us/etc/"
VIM_GIT_URL="https://git.riedstra.us/mitch/vim-cfg"