mirror of
https://github.com/autistic-symposium/shell-whiz-toolkit.git
synced 2025-05-28 03:04:19 -04:00
add things resources from the last 5 years over machines
This commit is contained in:
parent
ac9c955e0b
commit
3efc19e1f2
77 changed files with 2327 additions and 84 deletions
3
zsh/README.md
Normal file
3
zsh/README.md
Normal file
|
@ -0,0 +1,3 @@
|
|||
## zsh
|
||||
|
||||
* [spaceship plugin](https://github.com/denysdovhan/spaceship-prompt).
|
47
zsh/zshrc
Normal file
47
zsh/zshrc
Normal file
|
@ -0,0 +1,47 @@
|
|||
###########
|
||||
# Exports
|
||||
###########
|
||||
|
||||
export PATH="$HOME/go/bin/:$PATH"
|
||||
export GOPATH=$HOME/go
|
||||
export GOROOT=/usr/local/opt/go/libexec
|
||||
export PATH=$PATH:$GOPATH/bin
|
||||
export PATH=$PATH:$GOROOT/bin
|
||||
|
||||
export KUBECONFIG=~/.kube/config
|
||||
export KUBECTX_CURRENT_FGCOLOR=$(tput setaf 3)
|
||||
export KUBECTX_CURRENT_BGCOLOR=$(tput setab 5)
|
||||
|
||||
export HISTCONTROL=ignoredups
|
||||
export CLICOLOR=230
|
||||
export GREP_COLOR='1;31' # green for matches
|
||||
export GREP_OPTIONS='--color=auto'
|
||||
|
||||
export ZSH="/Users/mia/.oh-my-zsh"
|
||||
ZSH_THEME="robbyrussell"
|
||||
|
||||
|
||||
###########
|
||||
# PLUGINS ✨
|
||||
############
|
||||
|
||||
plugins=(git)
|
||||
source $ZSH/oh-my-zsh.sh
|
||||
|
||||
|
||||
##########
|
||||
# ALIAS ✨
|
||||
##########
|
||||
|
||||
alias fly="/usr/local/opt/fly"
|
||||
alias zshconfig="mate ~/.zshrc"
|
||||
alias ohmyzsh="mate ~/.oh-my-zsh"
|
||||
alias code="open -a 'Visual Studio Code'"
|
||||
|
||||
alias gc="git commit"
|
||||
alias ga="git add"
|
||||
alias gp="git push"
|
||||
alias gp="git pull"
|
||||
|
||||
alias k="kubectl"
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue