# set -xv HISTSIZE=10000000 SAVEHIST=10000000 setopt SHARE_HISTORY setopt HIST_REDUCE_BLANKS setopt HIST_FIND_NO_DUPS setopt HIST_IGNORE_SPACE setopt interactivecomments # recognize comment char if [ -f ${HOME}/.zplug/init.zsh ]; then source ${HOME}/.zplug/init.zsh else curl -sL --proto-redir -all,https https://raw.githubusercontent.com/zplug/installer/master/installer.zsh | zsh fi # RUN ZPLUG INSTALL AFTER CHANGING!!!! zplug "lib/completion", from:oh-my-zsh zplug "lib/history", from:oh-my-zsh zplug "plugins/git", from:oh-my-zsh; zplug "plugins/adb", from:oh-my-zsh; zplug "plugins/bazel", from:oh-my-zsh; zplug "plugins/docker-compose", from:oh-my-zsh; zplug "plugins/docker", from:oh-my-zsh; zplug "plugins/rsync", from:oh-my-zsh; zplug "plugins/safepaste", from:oh-my-zsh; zplug "mattberther/zsh-pyenv" zplug "Tarrasch/zsh-autoenv" # Expects .autoenv.zsh or .autoenv_leave.zsh zplug "zsh-users/zsh-syntax-highlighting", defer:2 zplug "mafredri/zsh-async", from:"github", use:"async.zsh" zplug "zsh-users/zsh-autosuggestions" zplug "zsh-users/zsh-history-substring-search" zplug "modules/command-not-found", from:prezto zplug "modules/completion", from:prezto zplug "romkatv/powerlevel10k", as:theme, depth:1 # zplug "stedolan/jq", from:gh-r, as:command, rename-to:jq # Install plugins if there are plugins that have not been installed if ! zplug check --verbose; then printf "Install? [y/N]: " if read -q; then echo; zplug install fi fi # Then, source plugins and add commands to $PATH zplug load [[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh # Enable Powerlevel10k instant prompt. Should stay close to the top of ~/.zshrc. # Initialization code that may require console input (password prompts, [y/n] # confirmations, etc.) must go above this block; everything else may go below. if [[ -r "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" ]]; then source "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" fi ZSH_THEME=powerlevel10k/powerlevel10k DISABLE_AUTO_TITLE=true fancy-ctrl-z () { if [[ $#BUFFER -eq 0 ]]; then BUFFER="fg" zle accept-line -w else zle push-input -w zle clear-screen -w fi } zle -N fancy-ctrl-z bindkey '^Z' fancy-ctrl-z bindkey '^R' fzf-history-widget bindkey "^A" beginning-of-line bindkey "^E" end-of-line bindkey '\eK' kill-line bindkey "^L" clear-screen bindkey "^U" kill-whole-line bindkey "^W" backward-kill-word bindkey "^Y" yank autoload edit-command-line zle -N edit-command-line bindkey '^Xe' edit-command-line bindkey '^X^e' edit-command-line bindkey '\e.' insert-last-word bindkey '\ef' forward-word bindkey '\eb' backward-word bindkey '\ed' kill-word bindkey '^[^?' backward-kill-word # bindkey "^[[A" up-history # bindkey "^[[B" down-history # bindkey "^[[A" history-beginning-search-backward # bindkey "^[[B" history-beginning-search-forward bindkey "^[[A" history-substring-search-up bindkey "^[[B" history-substring-search-down # Put standard ANSI color codes in shell parameters for easy use. # Note that some terminals do not support all combinations. emulate -L zsh typeset -Ag color colour prompt_google3() { if [[ $PWD =~ '/google/src/cloud/[^/]+/(.+)/google3(.*)' ]]; then GPROMPT=$(print -r -- "//${match[2]#/}") else GPROMPT=$(print -r -- "$PWD") fi p10k segment -b '#afafff' -f '#fff' -t $GPROMPT } prompt_workspace() { if [[ $PWD =~ '/google/src/cloud/[^/]+/(.+)/google3(.*)' ]]; then GPROMPT=$(print -r -- "$match[1]") # #fff is different than white i guess p10k segment -b 63 -f '#fff' -t $GPROMPT fi } POWERLEVEL9K_CUSTOM_FIG='get_fig_prompt' POWERLEVEL9K_CUSTOM_FIG_BACKGROUND="237" POWERLEVEL9K_LEFT_PROMPT_ELEMENTS=(status workspace google3 dir_writable vcs custom_fig) POWERLEVEL9K_RIGHT_PROMPT_ELEMENTS=(host command_execution_time) ### Fix slowness of pastes with zsh-syntax-highlighting.zsh pasteinit() { OLD_SELF_INSERT=${${(s.:.)widgets[self-insert]}[2,3]} zle -N self-insert url-quote-magic # I wonder if you'd need `.url-quote-magic`? } pastefinish() { zle -N self-insert $OLD_SELF_INSERT } zstyle :bracketed-paste-magic paste-init pasteinit zstyle :bracketed-paste-magic paste-finish pastefinish ### Fix slowness of pastes # "transport endpoint is not connected" errors autoload -Uz add-zsh-hook [ -f ~/.fzf.zsh ] && source ~/.fzf.zsh export EDITOR='nvim' export TERM=xterm-256color export LANG="en_US.UTF-8" export LC_ALL="en_US.UTF-8" export LC_CTYPE="en_US.UTF-8" export LANG_ALL="en_US.UTF-8" source ~/.bash_profile export PATH="$HOME/.local/bin:$PATH"