From 7ccb7c4c2281ffce39800746d777ead9f8534ace Mon Sep 17 00:00:00 2001 From: Fabian Ising Date: Tue, 21 Feb 2023 11:15:19 +0100 Subject: [PATCH] [ZSH] Add shift select --- zsh/.zsh_plugins.txt | 2 ++ zsh/.zshrc | 3 +++ 2 files changed, 5 insertions(+) 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'