add vim-go. Tweaks to go path on windows

pull/1/merge
Adam Veldhousen 2014-12-19 15:59:46 -06:00
parent 193f749e79
commit 8642fc1bd6
2 changed files with 10 additions and 4 deletions

View File

@ -2,13 +2,18 @@
if [ -d "C:/Windows" ]; then
export WINDOWS="TRUE"
export GOPATH="$HOME"
export GOBIN="$HOME"
export GOPATH="/d:/Projects/Languages/Go"
export GOROOT="/D/Programs/Go"
else
export GOPATH="$HOME/../Projects/go"
export GOBIN="$HOME/../Projects/go/bin"
export GOROOT="$HOME/../Projects/go"
fi
export GOBIN="$GOROOT/bin"
PATH=${GOPATH}/bin:${GOBIN}:${PATH}
if [ -d "${HOME}/tools/plugins" ] ; then
PATH=${HOME}/tools/plugins:${PATH}
fi
@ -18,7 +23,6 @@ if [ -d "$ERLBIN" ]; then
PATH=${PATH}:${ERLBIN}
fi
# see environ manfile
export EDITOR=vim # Default Editor
export VISUAL=$EDITOR # Visual not really used differently from EDITOR anymore
@ -40,3 +44,4 @@ shopt -s checkwinsize # Checks window size to get proper line wrapping
shopt -s cdspell # Corrects minor spelling errors when cd-ing
set -o vi # Set prompt to vi mode
set -o notify # Report status of terminated background jobs immediately

View File

@ -35,3 +35,4 @@ git://github.com/mxw/vim-jsx.git
git://github.com/groenewege/vim-less.git
git://github.com/cakebaker/scss-syntax.vim.git
git://github.com/scrooloose/syntastic.git
git://github.com/fatih/vim-go.git