diff options
| author | Blista Kanjo | 2023-08-02 20:59:28 -0400 |
|---|---|---|
| committer | Blista Kanjo | 2023-08-02 20:59:28 -0400 |
| commit | 8f336a0fde17b5afe4640e7f53d7f6a041901297 (patch) | |
| tree | 5aac26ec21ea85a8c4e0506b79c6d8a6b2849cae /.config/shell/.zshrc | |
| parent | f6a56e7bce611a1aab71f351521bf4d2b946f729 (diff) | |
refactor: source all `zsh` plugins from `$HOME`
Diffstat (limited to '.config/shell/.zshrc')
| -rw-r--r-- | .config/shell/.zshrc | 12 |
1 files changed, 6 insertions, 6 deletions
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 |
