diff options
Diffstat (limited to '.config/zsh')
-rw-r--r-- | .config/zsh/.zshrc | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/.config/zsh/.zshrc b/.config/zsh/.zshrc index b9fcc75..c1c1146 100644 --- a/.config/zsh/.zshrc +++ b/.config/zsh/.zshrc @@ -125,7 +125,7 @@ bindkey -M vicmd "v" edit-command-line # Undo/Redo bindkey -M vicmd "u" undo -bindkey -M vicmd "$key_info[Control]R" redo +bindkey -M vicmd "U" redo if (( $+widgets[history-incremental-pattern-search-backward] )); then bindkey -M vicmd "?" history-incremental-pattern-search-backward @@ -437,6 +437,14 @@ for p in ${history_substring}; do fi done +# skim +skim=("/usr/share/skim/key-bindings.zsh" "/usr/share/skim/completion.zsh") +for p in ${skim}; do + if [ -f "$p" ]; then + source "$p" + fi +done + # includes for config_file ($HOME/.config/zsh/includes/*.zsh) source $config_file |