From 8f336a0fde17b5afe4640e7f53d7f6a041901297 Mon Sep 17 00:00:00 2001 From: Blista Kanjo Date: Wed, 2 Aug 2023 20:59:28 -0400 Subject: refactor: source all `zsh` plugins from `$HOME` --- .config/shell/.zshrc | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to '.config/shell/.zshrc') diff --git a/.config/shell/.zshrc b/.config/shell/.zshrc index ab33aa5..ecb00cc 100644 --- a/.config/shell/.zshrc +++ b/.config/shell/.zshrc @@ -1,8 +1,8 @@ # source zsh extensions (order is important) -source /usr/share/zsh/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh -source /usr/share/zsh/plugins/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh +source ~/.config/shell/zsh-autosuggestions/zsh-autosuggestions.zsh +source ~/.config/shell/zsh-syntax-highlighting/zsh-syntax-highlighting.zsh source ~/.config/shell/git-prompt.zsh -source ~/.config/shell/git-prompt_examples/kj_sh604.zsh +source ~/.config/shell/git-prompts/kj_sh604.zsh # configure history settings @@ -77,10 +77,10 @@ bindkey -M menuselect 'j' vi-down-line-or-history bindkey -v '^?' backward-delete-char # edit line in vim with ctrl-e -autoload -Uz edit-command-line; zle -N edit-command-line -bindkey '\ee' edit-command-line +autoload edit-command-line; zle -N edit-command-line +bindkey '^e' edit-command-line bindkey -M vicmd '^[[P' vi-delete-char -bindkey -M vicmd '\ee' edit-command-line +bindkey -M vicmd '^e' edit-command-line bindkey -M visual '^[[P' vi-delete # cursor shape settings for vi modes -- cgit v1.2.3