zshrc 7.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263
  1. eval "$(dircolors -b ~/.dircolors)"
  2. autoload -Uz compinit
  3. compinit
  4. zmodload -a complist
  5. zstyle ':completion:*' matcher-list 'm:{a-z}={A-Z}' 'r:|[._-]=* r:|=*' 'l:|=* r:|=*'
  6. zstyle ':completion:*' list-colors ${(s.:.)LS_COLORS}
  7. zstyle ':completion:*' use-compctl false
  8. zstyle ':completion:*' use-cache on
  9. zstyle ':completion:*' cache-path ~/.zshcache
  10. __git_files () {
  11. _wanted files expl 'local files' _files
  12. }
  13. zstyle :compinstall filename "$HOME/.zshrc"
  14. source $HOME/.zsh_autosuggestions.zsh
  15. HISTFILE=~/.histfile
  16. HISTSIZE=10000
  17. SAVEHIST=10000
  18. setopt no_beep
  19. setopt extendedglob
  20. setopt prompt_subst
  21. setopt complete_in_word
  22. setopt no_auto_menu
  23. setopt no_always_last_prompt
  24. setopt share_history
  25. setopt hist_ignore_all_dups
  26. setopt hist_ignore_space
  27. setopt extended_history
  28. setopt promptsubst
  29. setopt autopushd
  30. setopt pushdignoredups
  31. setopt nomatch
  32. autoload -U edit-command-line
  33. zle -N edit-command-line
  34. bindkey -e
  35. bindkey '^[[3~' delete-char
  36. bindkey '^[[1;5C' forward-word
  37. bindkey '^[[1;5D' backward-word
  38. bindkey '\C-v' edit-command-line
  39. bindkey '\Ea' push-line
  40. local WORDCHARS=${WORDCHARS//\//}\| # remove forward slash, add pipe
  41. autoload -U url-quote-magic
  42. zle -N self-insert url-quote-magic
  43. source $HOME/.zsh_fast_syntax_highlighting/fast-syntax-highlighting.plugin.zsh
  44. if builtin which batcat > /dev/null; then
  45. export MANPAGER='sh -c "col -bx | batcat --language man --paging always --style plain"'
  46. export MANROFFOPT='-c'
  47. elif builtin which nvim > /dev/null; then
  48. export MANPAGER='vim +Man!'
  49. else
  50. export MANPAGER='vim -M +MANPAGER -'
  51. fi
  52. export GREP_COLORS='ms=01;36:mc=01;31:sl=:cx=:fn=35:ln=33:bn=33:se=01;34'
  53. if [ -x ~/bin/eza ]; then
  54. export EZA_COLORS=bu=0:cr=0
  55. alias ls='eza --group-directories-first --mounts --group --hyperlink --icons=auto'
  56. else
  57. alias ls='ls --color=auto -hv --group-directories-first'
  58. fi
  59. if [ $TERM = xterm-kitty ]; then
  60. alias ssh='kitten ssh'
  61. fi
  62. alias ll='ls -l'
  63. alias l.='ls -Ad .*'
  64. alias la='ls -A'
  65. alias llr='lr -1AGl -ov'
  66. alias bat=batcat
  67. alias grep='grep --color -s'
  68. alias df='df -hx tmpfs'
  69. alias du='du --max-depth=1'
  70. alias fd='fdfind'
  71. alias sr='screen -r'
  72. alias gil='git log --graph --abbrev-commit --stat --summary -C --decorate --date=local'
  73. alias gime='git short --author raylu'
  74. alias giw='git show -C --date=local --decorate'
  75. alias gip='git pull --ff-only'
  76. alias gib='git branch'
  77. alias gis='git status'
  78. alias gid='git diff -C --date=local'
  79. alias gic='git checkout'
  80. alias giu='git reset HEAD\^'
  81. alias hgw='hg diff --change .'
  82. alias class='xprop -notype WM_CLASS'
  83. alias fx='FX_NO_MOUSE=1 FX_COLLAPSED=1 FX_SHOW_SIZE=1 fx'
  84. alias tree='tree -AvL 10'
  85. alias vi='vi -p'
  86. alias vil='vi *(.om[1])'
  87. alias sudovi="sudo vi -N -u $HOME/.vimrc"
  88. alias shrug="echo -n '¯\\(°_o)/¯' | xclip -selection clipboard"
  89. function https() {
  90. openssl s_client -connect $1:443 -servername $1 < /dev/null | \
  91. openssl x509 -noout -text -certopt no_header,no_version,no_serial,no_signame,no_pubkey,no_sigdump
  92. }
  93. function cl() {
  94. if [ $# = 0 ]; then
  95. cd && ls
  96. else
  97. cd "$*" && ls
  98. fi
  99. }
  100. function pdf() {
  101. atril "$*" &> /dev/null &!
  102. }
  103. if [ -d /usr/lib/cargo/bin ]; then
  104. PATH=/usr/lib/cargo/bin:$PATH
  105. if [ -d /usr/lib/cargo/bin/coreutils ]; then
  106. PATH=/usr/lib/cargo/bin/coreutils:$PATH
  107. fi
  108. fi
  109. if [ -d $HOME/.cargo/bin ]; then
  110. PATH=$HOME/.cargo/bin:$PATH
  111. fi
  112. export BUN_INSTALL=$HOME/.bun
  113. if [ -d $BUN_INSTALL ]; then
  114. source $BUN_INSTALL/_bun
  115. PATH="$BUN_INSTALL/bin:$PATH"
  116. fi
  117. if [ -d $HOME/bin ]; then
  118. PATH=$HOME/bin:$PATH
  119. fi
  120. if builtin which nvim > /dev/null; then
  121. export EDITOR=nvim
  122. else
  123. export EDITOR=vi
  124. fi
  125. if builtin which oh-my-posh > /dev/null; then
  126. eval "$(oh-my-posh init zsh -c ~/.config/oh-my-posh.toml)"
  127. elif builtin which starship > /dev/null; then
  128. eval "$(starship init zsh)"
  129. else
  130. autoload colors
  131. colors
  132. bright_cyan='%{%}' # not provided by colors
  133. autoload -Uz vcs_info
  134. zstyle ':vcs_info:*' unstagedstr "%{$fg[red]%}*"
  135. zstyle ':vcs_info:*' stagedstr "%{$fg[red]%}+"
  136. zstyle ':vcs_info:*' formats "$bright_cyan%b%u%c"
  137. zstyle ':vcs_info:*' actionformats "$bright_cyan%b%u%c|%a"
  138. zstyle ':vcs_info:git:*' check-for-changes true
  139. zstyle ':vcs_info:(sv[nk]|bzr):*' branchformat '%b:%r'
  140. zstyle ':vcs_info:bzr:*' use-simple true
  141. zstyle ':vcs_info:*' enable git hg bzr svn cvs
  142. precmd () { vcs_info }
  143. PROMPT="%{$fg_bold[grey]%}%* " # time
  144. PROMPT+="%{${fg_bold[green]}%}%m%{${reset_color}%}:" # host
  145. PROMPT+="%{${fg_bold[blue]}%}%50<...<%~%<<%{${reset_color}%} " # path
  146. PROMPT+='${vcs_info_msg_0_} '
  147. PROMPT+="%(?..%{$fg_bold[red]%}%? %{$reset_color%})" # exit status
  148. PROMPT+="%1(j.%{$fg[green]%}%j .)" # suspended jobs
  149. PROMPT+=$'%{$reset_color%} \n%(!.#.\$) '
  150. fi
  151. if builtin which jj > /dev/null; then
  152. source <(COMPLETE=zsh jj)
  153. fi
  154. if builtin which procs > /dev/null; then
  155. source <(procs --gen-completion-out zsh)
  156. fi
  157. if builtin which aws_completer > /dev/null; then
  158. autoload bashcompinit && bashcompinit
  159. complete -C aws_completer aws
  160. fi
  161. if builtin which fzf > /dev/null; then
  162. FZF_DEFAULT_OPTS='--no-mouse'
  163. source "/usr/share/doc/fzf/examples/key-bindings.zsh"
  164. __fzf_git_commit_sha() {
  165. setopt localoptions pipefail no_aliases 2> /dev/null
  166. if jj root &> /dev/null; then
  167. jj --ignore-working-copy --color=always log --no-graph \
  168. -T 'if(root, format_root_commit(self), label(
  169. if(current_working_copy, "working_copy"),
  170. format_short_commit_header(self) ++ "\n" ++ if(description, description.first_line(),
  171. label(if(empty, "empty"), description_placeholder)
  172. )
  173. )) ++ "\x00"' |
  174. $(__fzfcmd) --read0 --ansi --no-sort --reverse --highlight-line \
  175. --height ${FZF_TMUX_HEIGHT:-40%} --accept-nth 1 \
  176. --preview='jj --ignore-working-copy --color=always show --stat {1}'
  177. else
  178. git log --color=always -n 50 --format='%C(auto)%h%d %s %C(black)%C(bold)%cr' |
  179. FZF_DEFAULT_OPTS="--ansi --no-sort --tiebreak=index --reverse \
  180. --preview 'git show --color=always {1}' ${FZF_DEFAULT_OPTS-}" $(__fzfcmd) -m "$@" |
  181. sed -r -e 's/([0-9a-f]+) .+/\1/' -e 's/.+ ([0-9a-f]+)/\1/'
  182. fi
  183. }
  184. fzf-git-commit-sha-widget() {
  185. LBUFFER="${LBUFFER}$(__fzf_git_commit_sha)"
  186. local ret=$?
  187. zle reset-prompt
  188. return $ret
  189. }
  190. zle -N fzf-git-commit-sha-widget
  191. bindkey '^G' fzf-git-commit-sha-widget
  192. __fzf_git_branch() {
  193. setopt localoptions pipefail no_aliases 2> /dev/null
  194. git branch --all --color=always \
  195. --format='%(if)%(HEAD)%(then)%(color:bold green)%(else)%(if:equals=refs/remotes)%(refname:rstrip=-2)%(then)%(color:red)%(end)%(end)%(refname:short)' |
  196. FZF_DEFAULT_OPTS="--ansi --no-sort --tiebreak=index --reverse ${FZF_DEFAULT_OPTS-}" \
  197. $(__fzfcmd) \
  198. --preview 'git log --color=always --abbrev-commit --stat --summary -C --decorate --date=local {1} --max-count=20' \
  199. --height ${FZF_TMUX_HEIGHT:-40%} "$@"
  200. }
  201. fzf-git-branch-widget() {
  202. LBUFFER="${LBUFFER}$(__fzf_git_branch)"
  203. local ret=$?
  204. zle reset-prompt
  205. return $ret
  206. }
  207. zle -N fzf-git-branch-widget
  208. bindkey '^H' fzf-git-branch-widget
  209. __fzf_pid() {
  210. setopt localoptions pipefail no_aliases 2> /dev/null
  211. ps axo pid,start,user,command |
  212. FZF_DEFAULT_OPTS="--height ${FZF_TMUX_HEIGHT:-40%} --reverse ${FZF_DEFAULT_OPTS-}" $(__fzfcmd) -m "$@" |
  213. awk '{print $1}'
  214. }
  215. fzf-pid-widget() {
  216. LBUFFER="${LBUFFER}$(__fzf_pid)"
  217. local ret=$?
  218. zle reset-prompt
  219. return $ret
  220. }
  221. zle -N fzf-pid-widget
  222. bindkey '^O' fzf-pid-widget
  223. __fzf_rg() {
  224. setopt localoptions pipefail no_aliases 2> /dev/null
  225. RELOAD='reload:rg --column --color=always --smart-case {q} || :'
  226. $(__fzfcmd) --disabled --ansi --multi \
  227. --bind "start:$RELOAD" --bind "change:$RELOAD" \
  228. --bind 'alt-a:select-all,alt-d:deselect-all,ctrl-/:toggle-preview' \
  229. --delimiter : \
  230. --preview 'bat --style=full --color=always --highlight-line {2} {1}' \
  231. --preview-window '~4,+{2}+4/3,<80(up)' \
  232. --query "$*" |
  233. cut -d: -f1
  234. }
  235. fzf-rg-widget() {
  236. LBUFFER="${LBUFFER}$(__fzf_rg)"
  237. local ret=$?
  238. zle reset-prompt
  239. return $ret
  240. }
  241. zle -N fzf-rg-widget
  242. bindkey '^S' fzf-rg-widget
  243. fi
  244. stty stop undef