diff --git a/zsh/.zsh_plugins.txt b/zsh/.zsh_plugins.txt index 64dc98c..05cf084 100644 --- a/zsh/.zsh_plugins.txt +++ b/zsh/.zsh_plugins.txt @@ -17,6 +17,8 @@ zsh-users/zsh-history-substring-search urbainvaes/fzf-marks greymd/docker-zsh-completion zdharma-continuum/fast-syntax-highlighting kind:defer +# Select with shift +jirutka/zsh-shift-select # Initialize completions belak/zsh-utils path:completion diff --git a/zsh/.zshrc b/zsh/.zshrc index bf063a6..44d7680 100644 --- a/zsh/.zshrc +++ b/zsh/.zshrc @@ -30,6 +30,9 @@ setopt HIST_IGNORE_SPACE # Clear screen by ctrl+q bindkey '^q' clear-screen +# Bind Ctrl-W to kill-region +bindkey "^w" kill-region + alias vim=nvim alias sudo='sudo ' export EDITOR='nvim'