# If you come from bash you might have to change your $PATH. # export PATH=$HOME/bin:/usr/local/bin:$PATH HISTFILE=$ZDOTDIR/.zsh_history # terminal colors export COLORTERM=24bit # Setting some opts # setopt correct_all setopt auto_pushd setopt pushd_ignore_dups setopt pushdminus setopt extended_history # record timestamp of command in HISTFILE setopt hist_expire_dups_first # delete duplicates first when HISTFILE size exceeds HISTSIZE setopt hist_ignore_dups # ignore duplicated commands history list setopt hist_ignore_space # ignore commands that start with space setopt hist_verify # show command with history expansion to user before running it setopt share_history # share command history data setopt long_list_jobs setopt interactivecomments # Initialize the completion system # fpath=(~/config/zsh/.zsh $fpath) autoload -U compinit ; compinit ## Vi keybindings for the shell ## bindkey -v autoload -Uz edit-command-line zle -N edit-command-line bindkey -M vicmd v edit-command-line ## History navigation by search pattern autoload history-search-end zle -N history-beginning-search-backward-end \ history-search-end zle -N history-beginning-search-forward-end \ history-search-end bindkey '^[[A' history-beginning-search-backward-end bindkey '^[[B' history-beginning-search-forward-end ## Aliases source ~/.config/zsh/aliases.zsh source ~/.config/zsh/completion.zsh source ~/.config/zsh/termsupport.zsh source ~/.config/zsh/theme-and-appearance.zsh # If not running interactively, don't do anything [ -z "$PS1" ] && return # Add pwd to history # This version should strip any existing pwd from the command before adding the # current pwd. This eliminates the pileup of these pwd comments when reusing # old commands (e.g., with up-arrow). # function zshaddhistory() { # history_item="${${1%%$'\n'}%%$' ###'*} ### ${PWD}" # print -sr ${(z)history_item} # fc -p # return 1 # } # Starship eval "$(starship init zsh)" ## FZF ## [ -f ~/.fzf.zsh ] && source ~/.fzf.zsh source ~/.vim/plugged/fzf/shell/completion.zsh source ~/.vim/plugged/fzf/shell/key-bindings.zsh # Use fd (https://github.com/sharkdp/fd) instead of the default find # command for listing path candidates. # - The first argument to the function ($1) is the base path to start traversal # - See the source code (completion.{bash,zsh}) for the details. _fzf_compgen_path() { fd --no-ignore --hidden --follow --exclude ".git" . "$1" } # Use fd to generate the list for directory completion _fzf_compgen_dir() { fd --no-ignore --type d --hidden --follow --exclude ".git" . "$1" } # Block and beam cursors for vim mode cursor_mode() { # See https://ttssh2.osdn.jp/manual/4/en/usage/tips/vim.html for cursor shapes cursor_block='\e[2 q' cursor_beam='\e[6 q' function zle-keymap-select { if [[ ${KEYMAP} == vicmd ]] || [[ $1 = 'block' ]]; then echo -ne $cursor_block elif [[ ${KEYMAP} == main ]] || [[ ${KEYMAP} == viins ]] || [[ ${KEYMAP} = '' ]] || [[ $1 = 'beam' ]]; then echo -ne $cursor_beam fi } zle-line-init() { echo -ne $cursor_beam } zle -N zle-keymap-select zle -N zle-line-init } cursor_mode ## zoxide ## eval "$(zoxide init zsh)" # navi # eval "$(navi widget zsh)" # tmuxp completion # N.B. This throws a "parse error" as of 2022-10-12 # eval "$(_TMUXP_COMPLETE=source_zsh tmuxp)" source /home/adam/.cargo/env # nvm [ -z "$NVM_DIR" ] && export NVM_DIR="$HOME/.config/nvm" source /usr/share/nvm/nvm.sh source /usr/share/nvm/bash_completion source /usr/share/nvm/install-nvm-exec # rbenv # eval "$(rbenv init -)" # broot source /home/adam/.config/broot/launcher/bash/br # tea PROG=tea _CLI_ZSH_AUTOCOMPLETE_HACK=1 source "/home/adam/.config/tea/autocomplete.zsh"