Mercurial > dotfiles
view dot_zshrc @ 545:20ee2a5d1f3d
Add brew packages
author | zegervdv <zegervdv@me.com> |
---|---|
date | Sun, 30 Jan 2022 10:44:11 +0100 |
parents | c071fc2dc6fc |
children | 06df3dcf5d96 |
line wrap: on
line source
# vim:ft=zsh fpath=(~/.zsh/completions $fpath) export TERM=xterm-256color export LC_ALL=$LANG PROMPT='%F{cyan}%T%f %F{red}%m%f %F{blue}%~%b%f %j -> ' vim_ins_mode="%F{black}%K{yellow} INS %k%f" vim_cmd_mode="%F{white}%K{red} NRM %k%f" vim_mode=$vim_ins_mode # Cursor mapping from nyquase/vi-mode function select_cursor() { case $KEYMAP in # Block cursor in normal and visual mode vicmd) echo -ne "\e[2 q";; # Line cursor in insert mode main|viins) echo -ne "\e[5 q";; # Else Block cursor *) echo -ne "\e[2 q";; esac } function zle-keymap-select { vim_mode="${${KEYMAP/vicmd/${vim_cmd_mode}}/(main|viins)/${vim_ins_mode}}" zle reset-prompt zle -R select_cursor } zle -N zle-keymap-select function zle-line-init() { echoti smkx zle reset-prompt select_cursor } zle -N zle-line-init function zle-line-finish { vim_mode=$vim_ins_mode echoti rmkx echo -ne "\e[2 q" } zle -N zle-line-finish function TRAPINT() { vim_mode=$vim_ins_mode return $(( 128 + $1 )) } autoload -Uz vcs_info zstyle ':vcs_info:*' enable git hg zstyle ':vcs_info:*' actionformats '%F{5}(%f%s%F{5})%F{3}-%F{5}[%F{2}%b%F{3}|%F{1}%a%F{5}]%f ' zstyle ':vcs_info:*' formats '%F{4}%s%F{5}%F{3} @ %F{2}%b%f' zstyle ':vcs_info:hg*:*' use-simple true precmd () { vcs_info } RPROMPT='${vcs_info_msg_0_} ${vim_mode}' zmodload -i zsh/complist bindkey -v zmodload zsh/complist bindkey -M menuselect 'h' vi-backward-char bindkey -M menuselect 'k' vi-up-line-or-history bindkey -M menuselect 'j' vi-down-line-or-history bindkey -M menuselect 'l' vi-forward-char # Enter interactive search bindkey -M menuselect '^xi' vi-insert export LESS_TERMCAP_mb=$(printf "\e[1;31m") export LESS_TERMCAP_md=$(printf "\e[1;31m") export LESS_TERMCAP_me=$(printf "\e[0m") export LESS_TERMCAP_se=$(printf "\e[0m") export LESS_TERMCAP_so=$(printf "\e[1;44;33m") export LESS_TERMCAP_ue=$(printf "\e[0m") export LESS_TERMCAP_us=$(printf "\e[1;32m") export CLICOLOR=1 export LS_COLORS='no=00;37:fi=00:di=00;33:ln=04;36:pi=40;33:so=01;35:bd=40;33;01:' # Options setopt monitor setopt auto_cd setopt cdablevars setopt pushd_ignore_dups setopt interactive_comments setopt append_history setopt inc_append_history setopt hist_ignore_dups setopt hist_find_no_dups setopt hist_reduce_blanks setopt extended_history setopt hist_expire_dups_first setopt hist_verify setopt share_history setopt transient_rprompt setopt prompt_subst setopt multios setopt correct_all setopt autopushd setopt pushdminus setopt pushdsilent setopt nobeep setopt notify REPORTTIME=5 HISTSIZE=3000 SAVEHIST=3000 HISTFILE=~/.zsh_history # Completion setopt complete_in_word setopt always_to_end setopt auto_menu setopt auto_param_slash # Enable completers zstyle ':completion:*' completer _complete _approximate zstyle ':completion:*' use-cache on zstyle ':completion:*' cache-path "$XDG_CACHE_HOME/zsh/.zcompcache" # file list info zstyle ':completion:*' file-list list # activate color-completion zstyle ':completion:*:default' list-colors ${(s.:.)LS_COLORS} # format on completion zstyle ':completion:*:descriptions' format $'%{\e[0;31m%}completing %B%d%b%{\e[0m%}' # insert all expansions for expand completer zstyle ':completion:*:expand:*' tag-order all-expansions zstyle ':completion:*:history-words' list false # activate menu zstyle ':completion:*:history-words' menu yes # ignore duplicate entries zstyle ':completion:*:history-words' remove-all-dups yes zstyle ':completion:*:history-words' stop yes zstyle ':completion:*:matches' group 'yes' zstyle ':completion:*' group-name '' if [[ "$NOMENU" -eq 0 ]] ; then # if there are more than 5 options allow selecting from a menu zstyle ':completion:*' menu select=5 else # don't use any menus at all setopt no_auto_menu fi zstyle ':completion:*:messages' format '%d' zstyle ':completion:*:options' auto-description '%d' # describe options in full zstyle ':completion:*:options' description 'yes' # complete manual by their section zstyle ':completion:*:manuals' separate-sections true zstyle ':completion:*:manuals.*' insert-sections true zstyle ':completion:*:man:*' menu yes select # Search path for sudo completion zstyle ':completion:*:sudo:*' command-path /usr/local/sbin \ /usr/local/bin \ /usr/sbin \ /usr/bin \ /sbin \ /bin \ /usr/X11R6/bin # provide .. as a completion zstyle ':completion:*' specal-dirs .. # case insensitive path-completion zstyle ':completion:*' matcher-list 'm:{[:lower:][:upper:]}={[:upper:][:lower:]}' 'm:{[:lower:][:upper:]}={[:upper:][:lower:]} l:|=* r:|=*' 'm:{[:lower:][:upper:]}={[:upper:][:lower:]} l:|=* r:|=*' 'm:{[:lower:][:upper:]}={[:upper:][:lower:]} l:|=* r:|=*' # nvim completion zstyle ':completion:*:*:nvim:*' ignored-patterns '*.(o|hex|elf|pyc|pdf|dup)' zstyle ':completion:*:*:nvim:*' file-sort modification # fg when pressing Ctrl+Z function fancy-ctrl-z () { if [[ $#BUFFER -eq 0 ]]; then if [[ $(jobs | wc -l) -gt 0 ]]; then BUFFER='fg' zle accept-line fi else zle push-input zle clear-screen fi } zle -N fancy-ctrl-z bindkey '^Z' fancy-ctrl-z # Aliases alias l="ls -haltr" alias ll="ls -haltr" alias xclip='xclip -selection clipboard' alias view='nvim -R' # Exports export XDG_CONFIG_HOME=$HOME/.config export PATH=$HOME/bin:$PATH export EDITOR=nvim export HGEDITOR=nvim export RIPGREP_CONFIG_PATH=$HOME/.config/ripgrep/ripgreprc export BAT_CONFIG_PATH=$HOME/.config/bat/config [ -f ~/.zshrc.local ] && source ~/.zshrc.local # Must run after brew is loaded export SUDO_EDITOR=$(which nvim) eval "$(direnv hook zsh)" source ~/.zsh/zsh-history-substring-search.zsh export HISTORY_SUBSTRING_SEARCH_HIGHLIGHT_FOUND='bg=green,fg=black' source ~/.zsh/zsh-autosuggestions.zsh source ~/.zsh/fast-syntax-highlighting/fast-syntax-highlighting.plugin.zsh source ~/.zsh/zsh-histdb/sqlite-history.zsh source ~/.zsh/fzf-histdb.zsh # The plugin will auto execute this zvm_after_init function function zvm_after_init() { [ -f ~/.fzf.zsh ] && source ~/.fzf.zsh bindkey '^r' histdb-fzf-widget bindkey '^t' push-line-or-edit bindkey '^[[A' history-substring-search-up bindkey '^[[B' history-substring-search-down bindkey "$terminfo[kcuu1]" history-substring-search-up bindkey "$terminfo[kcud1]" history-substring-search-down bindkey '^p' history-substring-search-up bindkey '^n' history-substring-search-down bindkey '^f' autosuggest-accept } source ~/.zsh/zsh-vi-mode.zsh _zsh_autosuggest_strategy_histdb_top_here() { local query="select commands.argv from history left join commands on history.command_id = commands.rowid left join places on history.place_id = places.rowid where places.dir LIKE '$(sql_escape $PWD)%' and commands.argv LIKE '$(sql_escape $1)%' group by commands.argv order by count(*) desc limit 1" suggestion=$(_histdb_query "$query") } ZSH_AUTOSUGGEST_STRATEGY=histdb_top_here autoload -U compinit && compinit