Adds: WIP template

This commit is contained in:
Ben Dixon
2019-03-22 17:38:43 +08:00
parent 22e1370da4
commit 1da37fe46b
3 changed files with 164 additions and 8 deletions

21
templates/.zshrc.j2 Normal file
View File

@@ -0,0 +1,21 @@
# This file us auto-generated by ansible, do not change this file directly
# instead make changes to ~/.zshrc.personal which is loaded after this file
# Setup some standard paths
export ANDROID_HOME=~/Library/Android/sdk
export PATH=${PATH}:${ANDROID_HOME}/tools
export PATH=${PATH}:${ANDROID_HOME}/platform-tools
export PATH=/usr/local/opt/imagemagick@6/bin:${PATH}
# Load rbenv
eval "$(rbenv init -)"
# Load nvm
export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh --no-use" # This loads nvm
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
# Load personal ZSH config which should be stored in ~/.zshrc.personal
. ~/.zshrc.personal
ZSH_THEME="rubbyrussel"