diff options
Diffstat (limited to '')
-rw-r--r-- | .config/zsh/.zshrc | 5 | ||||
-rw-r--r-- | .config/zsh/plugins.zsh | 1 |
2 files changed, 5 insertions, 1 deletions
diff --git a/.config/zsh/.zshrc b/.config/zsh/.zshrc index 6fbceec..a50a1d3 100644 --- a/.config/zsh/.zshrc +++ b/.config/zsh/.zshrc @@ -62,6 +62,11 @@ exa_after_cd() { } add-zsh-hook chpwd exa_after_cd +autoload -Uz url-quote-magic +zle -N self-insert url-quote-magic +autoload -Uz bracketed-paste-magic +zle -N bracketed-paste bracketed-paste-magic + [ -f "$ZDOTDIR"/alias.zsh ] && source "$ZDOTDIR"/alias.zsh [ -f "$ZDOTDIR"/plugins.zsh ] && source "$ZDOTDIR"/plugins.zsh [ -f "$XDG_PACKAGE_HOME"/fzf/shell/completion.zsh ] && source "$XDG_PACKAGE_HOME"/fzf/shell/completion.zsh diff --git a/.config/zsh/plugins.zsh b/.config/zsh/plugins.zsh index abf7f8b..1ef66a9 100644 --- a/.config/zsh/plugins.zsh +++ b/.config/zsh/plugins.zsh @@ -11,5 +11,4 @@ # == ===== ==== == # ======================== -# source $HOME/Packages/git-prompt.zsh/git-prompt.zsh source $HOME/.local/packs/fast-syntax-highlighting/fast-syntax-highlighting.plugin.zsh >/dev/null |