[submodule "dotvim/bundle/jshint.vim"]
path = dotvim/bundle/jshint.vim
url = https://github.com/walm/jshint.vim.git
+[submodule "dotvim/bundle/vim-go"]
+ path = dotvim/bundle/vim-go
+ url = git@github.com:fatih/vim-go.git
export PLAY_PATH="/usr/local/play"
export PATH=$PATH:$PLAY_PATH
+##################################################
+#
+# Go Stuffs
+#
+##################################################
+
+export GOPATH=$HOME/Projects/go
+export PATH=$PATH:$(go env GOPATH)/bin
+
##################################################
#
# SSH hosts autocomplete
export PATH
[[ -s "$HOME/.profile" ]] && source "$HOME/.profile"
+
+# Setting PATH for Python 3.6
+# The original version is saved in .bash_profile.pysave
+PATH="/Library/Frameworks/Python.framework/Versions/3.6/bin:${PATH}"
+export PATH