Compare commits

..

No commits in common. "457058aaa66919e4230cd2c72be580458517ee5b" and "351c83159d7a4cefc5ea4ef2474333d070cd6f16" have entirely different histories.

3 changed files with 10 additions and 5 deletions

3
.gitmodules vendored
View file

@ -7,6 +7,9 @@
[submodule "vim/pack/normal/start/vim-go"] [submodule "vim/pack/normal/start/vim-go"]
path = vim/pack/normal/start/vim-go path = vim/pack/normal/start/vim-go
url = https://github.com/fatih/vim-go.git url = https://github.com/fatih/vim-go.git
[submodule "vim/pack/normal/start/vim-toml"]
path = vim/pack/normal/start/vim-toml
url = https://github.com/cespare/vim-toml.git
[submodule "zsh/zsh-syntax-highlighting"] [submodule "zsh/zsh-syntax-highlighting"]
path = zsh/zsh-syntax-highlighting path = zsh/zsh-syntax-highlighting
url = https://github.com/zsh-users/zsh-syntax-highlighting url = https://github.com/zsh-users/zsh-syntax-highlighting

@ -0,0 +1 @@
Subproject commit 2c8983cc391287e5e26e015c3ab9c38de9f9b759

11
zshrc
View file

@ -84,6 +84,12 @@ if [[ $OSTYPE == darwin* ]]; then
eval $($BREW_PREFIX/bin/brew shellenv) eval $($BREW_PREFIX/bin/brew shellenv)
fi fi
# If we have it available, permit MacPorts.
if [ -f /opt/local/bin/port ]; then
export PATH="/opt/local/bin:/opt/local/sbin:$PATH"
export MANPATH="/opt/local/share/man:$MANPATH"
fi
# Under Darwin, we also want iTerm2 integration if possible. # Under Darwin, we also want iTerm2 integration if possible.
if [ -f ${HOME}/.iterm2_shell_integration.zsh ]; then if [ -f ${HOME}/.iterm2_shell_integration.zsh ]; then
source "${HOME}/.iterm2_shell_integration.zsh" source "${HOME}/.iterm2_shell_integration.zsh"
@ -127,11 +133,6 @@ if [ -d /Library/Developer/Toolchains/swift-latest.xctoolchain ]; then
export PATH="/Library/Developer/Toolchains/swift-latest.xctoolchain/usr/bin:$PATH" export PATH="/Library/Developer/Toolchains/swift-latest.xctoolchain/usr/bin:$PATH"
fi fi
# Support mint (https://github.com/yonaskolb/Mint)
if [ -d $HOME/.mint/bin ]; then
export PATH="$HOME/.mint/bin:$PATH"
fi
# RVM must be last. # RVM must be last.
if [ -d $HOME/.rvm ]; then if [ -d $HOME/.rvm ]; then
PATH=${PATH}:$HOME/.rvm/bin PATH=${PATH}:$HOME/.rvm/bin