.zshrc 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  1. ZSH=$HOME/.oh-my-zsh
  2. export ZSH="/Users/david/.oh-my-zsh"
  3. ZSH_THEME="dpoggi"
  4. ###### Plugins ######
  5. plugins=(
  6. history-substring-search
  7. git
  8. gulp
  9. grunt
  10. vs
  11. yarn
  12. zsh-autosuggestions
  13. zsh-syntax-highlighting
  14. )
  15. ###### Keys ######
  16. bindkey -v
  17. bindkey '^P' up-history
  18. bindkey '^N' down-history
  19. bindkey '^?' backward-delete-char
  20. bindkey '^h' backward-delete-char
  21. bindkey '^w' backward-kill-word
  22. bindkey '^r' history-incremental-search-backward
  23. bindkey '^[[A' history-substring-search-up
  24. bindkey '^[[B' history-substring-search-down
  25. bindkey "$terminfo[kcuu1]" history-substring-search-up
  26. bindkey "$terminfo[kcud1]" history-substring-search-down
  27. export KEYTIMEOUT=1
  28. ###### Options ######
  29. # HIST_STAMPS="mm/dd/yyyy"
  30. # ZSH_CUSTOM=/path/to/new-custom-folder
  31. # zstyle ':omz:update' frequency 13
  32. # DISABLE_MAGIC_FUNCTIONS="true"
  33. # DISABLE_LS_COLORS="true"
  34. # DISABLE_AUTO_TITLE="true"
  35. # ENABLE_CORRECTION="true"
  36. # COMPLETION_WAITING_DOTS="true"
  37. # DISABLE_UNTRACKED_FILES_DIRTY="true"
  38. # export MANPATH="/usr/local/man:$MANPATH"
  39. # CASE_SENSITIVE="true"
  40. # DISABLE_AUTO_UPDATE="true"
  41. # export UPDATE_ZSH_DAYS=33
  42. # DISABLE_CORRECTION="true"
  43. # COMPLETION_WAITING_DOTS="true"
  44. # export MANPATH="/usr/local/man:$MANPATH"
  45. # if [[ -n $SSH_CONNECTION ]]; then
  46. # export EDITOR='vim'
  47. # else
  48. # export EDITOR='mvim'
  49. # fi
  50. # export ARCHFLAGS="-arch x86_64"
  51. # export ARCHFLAGS="-arch arm64"
  52. # export SSH_KEY_PATH="~/.ssh/dsa_id"
  53. source $ZSH/oh-my-zsh.sh
  54. alias zshconfig="vc ~/.zshrc"
  55. alias ohmyzsh="vc ~/.oh-my-zsh"
  56. ###### LIST ######
  57. alias l='ls -lFh' #size,show type,human readable
  58. alias la='ls -lAFh' #long list,show almost all,show type,human readable
  59. alias lr='ls -tRFh' #sorted by date,recursive,show type,human readable
  60. alias lt='ls -ltFh' #long list,sorted by date,show type,human readable
  61. alias ll='ls -l' #long list
  62. ###### GIT #######
  63. #alias zshconfig="mate ~/.zshrc"
  64. alias ga="git add"
  65. alias gaa="git add -A"
  66. alias gc="git commit -m '"
  67. alias gs="git status"
  68. alias gcm="git checkout master"
  69. alias gcd="git checkout dev"
  70. alias gmd="git merge dev"
  71. alias gpom="git push origin main"
  72. alias gpcm="git push code main"
  73. alias gprm="git push org main"
  74. alias gpor="git push origin master"
  75. alias gpcr="git push code master"
  76. alias gpod="git push origin dev"
  77. alias gpcd="git push code dev"
  78. ####### BREW #########
  79. alias brewp='brew pin'
  80. alias brews='brew list -1'
  81. alias brewsp='brew list --pinned'
  82. alias bubo='brew update && brew outdated'
  83. alias bubc='brew upgrade && brew cleanup'
  84. alias bubu='bubo && bubc'
  85. alias bcubo='brew update && brew cask outdated'
  86. alias bcubc='brew cask reinstall $(brew cask outdated) && brew cleanup'
  87. ##### NPM #####
  88. alias nit="npm init --yes"
  89. alias not="npm outdated"
  90. alias nu="npm update"
  91. alias ni="npm install"
  92. alias nu="npm uninstall"
  93. alias nis="npm install --save"
  94. alias nus="npm uninstall --save"
  95. alias nid="npm install --save-dev"
  96. alias nud="npm uninstall --save-dev"
  97. alias nip="npm install --save-prod"
  98. alias nup="npm uninstall --save-prod"
  99. ##### YARN #####
  100. alias ya='yarn add'
  101. alias yi='yarn install'
  102. alias yit='yarn init'
  103. alias yr='yarn remove'
  104. ##### GULP ######
  105. alias gr="gulp run"
  106. alias gb="gulp build"
  107. alias gcl="gulp clean"
  108. ####### Laravel ########
  109. alias pa='php artisan'
  110. alias pacache='php artisan cache:clear'
  111. alias paroutes='php artisan route:list'
  112. alias pavendor='php artisan vendor:publish'
  113. _laravel_get_command_list () {
  114. php artisan --raw --no-ansi list | sed "s/[[:space:]].*//g"
  115. }
  116. _laravel () {
  117. if [ -f artisan ]; then
  118. compadd `_laravel_get_command_list`
  119. fi
  120. }
  121. compdef _laravel artisan
  122. compdef _laravel pa
  123. export PATH="/opt/homebrew/opt/php@7.4/bin:$PATH"
  124. export PATH=$HOME/bin:/usr/local/bin:$PATH
  125. export NVM_DIR="$HOME/.nvm"
  126. [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
  127. [ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
  128. export PATH="$HOME/.rbenv/bin:$PATH"
  129. eval "$(rbenv init - zsh)"
  130. export PYENV_ROOT="$HOME/.pyenv"
  131. export PATH="$PYENV_ROOT/bin:$PATH"
  132. eval "$(pyenv init -)"
  133. #export PATH="/opt/homebrew/opt/php@7.4/bin:$PATH"
  134. #export PATH="/opt/homebrew/opt/php@7.4/sbin:$PATH"
  135. #export PATH="/opt/homebrew/opt/php@8.1/bin:$PATH"
  136. #export PATH="/opt/homebrew/opt/php@8.1/sbin:$PATH"
  137. export PATH="/opt/homebrew/opt/php@8.3/bin:$PATH"
  138. export PATH="/opt/homebrew/opt/php@8.3/sbin:$PATH"
  139. #export PATH="/opt/homebrew/opt/php/bin:$PATH"
  140. #export PATH="/opt/homebrew/opt/php/sbin:$PATH"
  141. export PATH="/opt/homebrew/opt/postgresql@15/bin:$PATH"