Last active
May 14, 2020 07:37
-
-
Save sdebruyn/6cfbee6010e3bd296835327ee9ffbc05 to your computer and use it in GitHub Desktop.
ZSH settings
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export ZSH="$HOME/.oh-my-zsh" | |
ENABLE_CORRECTION="true" | |
export EDITOR='code -w' | |
export TERM="xterm-256color" | |
SPACESHIP_BATTERY_THRESHOLD=20 | |
source /usr/local/share/antigen/antigen.zsh | |
antigen use oh-my-zsh | |
antigen bundle git | |
antigen bundle brew | |
antigen bundle command-not-found | |
antigen bundle zsh-users/zsh-syntax-highlighting | |
antigen bundle zsh-users/zsh-autosuggestions | |
antigen bundle zsh-users/zsh-completions | |
antigen bundle colored-man-pages | |
antigen bundle pip | |
antigen bundle osx | |
antigen bundle docker | |
antigen bundle python | |
antigen bundle cp | |
antigen bundle terraform | |
antigen bundle kubectl | |
antigen theme denysdovhan/spaceship-prompt | |
antigen apply | |
source ~/.iterm2_shell_integration.zsh | |
alias zshrc="code ~/.zshrc" | |
alias weather="curl wttr.in/Heist-op-den-Berg" | |
alias tf="terraform" | |
alias tfp="terraform plan" | |
alias tfa="terraform apply" | |
alias tff="terraform fmt" | |
alias tfv="terraform validate" | |
alias tfd="terraform destroy" | |
alias tfaa="terraform apply -auto-approve" | |
alias tfda="terraform destroy -auto-approve" | |
alias tfr="terraform refresh" | |
alias tft="terraform taint" | |
alias tfut="terraform untaint" | |
alias tfl="terraform state list" | |
alias tfs="terraform show" | |
export GOPATH=$HOME/go | |
export GOROOT=/usr/local/opt/go/libexec | |
export PATH=$PATH:$GOPATH/bin | |
export PATH=$PATH:$GOROOT/bin | |
export PATH="$HOME/Library/Python/3.7/bin:$PATH" | |
export SSH_AUTH_SOCK=$HOME/.sekey/ssh-agent.ssh |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export ZSH="$HOME/.oh-my-zsh" | |
ENABLE_CORRECTION="true" | |
ZSH_AUTOSUGGEST_HIGHLIGHT_STYLE="fg=10" | |
export EDITOR='code -w' | |
export TERM="xterm-256color" | |
SPACESHIP_BATTERY_THRESHOLD=20 | |
source /usr/share/zsh-antigen/antigen.zsh | |
antigen use oh-my-zsh | |
antigen bundle git | |
antigen bundle command-not-found | |
antigen bundle zsh-users/zsh-syntax-highlighting | |
antigen bundle zsh-users/zsh-autosuggestions | |
antigen bundle zsh-users/zsh-completions | |
antigen bundle colored-man-pages | |
antigen bundle pip | |
antigen bundle docker | |
antigen bundle python | |
antigen bundle cp | |
antigen bundle terraform | |
antigen bundle kubectl | |
antigen theme denysdovhan/spaceship-prompt | |
antigen apply | |
alias zshrc="code ~/.zshrc" | |
alias weather="curl wttr.in/Heist-op-den-Berg" | |
alias tf="terraform" | |
alias tfp="terraform plan" | |
alias tfa="terraform apply" | |
alias tff="terraform fmt" | |
alias tfv="terraform validate" | |
alias tfd="terraform destroy" | |
alias tfaa="terraform apply -auto-approve" | |
alias tfda="terraform destroy -auto-approve" | |
alias tfr="terraform refresh" | |
alias tft="terraform taint" | |
alias tfut="terraform untaint" | |
alias tfl="terraform state list" | |
alias tfs="terraform show" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment