cdotfis/dotfiles/.config/zsh/.zshrc

94 lines
2.2 KiB
Bash

if [ -f "${XDG_CONFIG_HOME:-$HOME/.config}/shell/aliasrc" ]; then
source "${XDG_CONFIG_HOME:-$HOME/.config}/shell/aliasrc"
fi
ZLE_REMOVE_SUFFIX_CHARS=$' \t\n;&'
ZSH_COMPDUMP="$XDG_CACHE_HOME"/zsh/zcompdump-"$HOST-$ZSH_VERSION"
zmodload zsh/complist
autoload -U compinit && compinit -d $ZSH_COMPDUMP
autoload -U colors && colors
zstyle ':completion:*' menu select
zstyle ':completion:*' list-colors ${(s.:.)LS_COLORS} ma=0\;33
zstyle ':completion:*' squeeze-slashes false
setopt EXTENDED_HISTORY
setopt INC_APPEND_HISTORY
setopt SHARE_HISTORY
setopt HIST_SAVE_NO_DUPS
setopt HIST_IGNORE_ALL_DUPS
setopt HIST_IGNORE_SPACE
setopt globdots
setopt extended_glob
setopt menu_complete
setopt no_case_glob no_case_match
setopt interactive_comments
bindkey -v
zle-keymap-select () {
case $KEYMAP in
vicmd) echo -ne '\e[1 q';;
viins|main) echo -ne '\e[5 q';;
esac
}
zle -N zle-keymap-select
zle-line-init() {
zle -K viins
echo -ne "\e[5 q"
}
zle -N zle-line-init
echo -ne '\e[5 q'
preexec() { echo -ne '\e[5 q' ;}
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
autoload -U edit-command-line
zle -N edit-command-line
bindkey '^E' edit-command-line
bindkey -M vicmd '^e' edit-command-line
bindkey -M vicmd '^[[P' vi-delete-char
bindkey -M visual '^[[P' vi-delete
bindkey "^H" backward-delete-char
bindkey "^?" backward-delete-char
bindkey "^R" history-incremental-search-backward
#autoload -U 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
bindkey "^[[A" history-search-backward
bindkey "^[[B" history-search-forward
bindkey '^[[P' delete-char
# bindkey "^[[3~" delete-char
#function zle-line-finish () { echoti rmkx }
#zle -N zle-line-finish
#bindkey -s '^f' 'cd "$(dirname "$(fzf)")"\n'
#bindkey -s '^o' 'xdg-open "$(fzf)"\n'
bracketed-paste() {
zle .$WIDGET && LBUFFER=${LBUFFER%$'\n'}
}
zle -N bracketed-paste
eval "$(starship init zsh)"