1
0
mirror of https://git.decapod.one/brethil/dotfiles synced 2024-11-22 03:21:30 +01:00

zsh: fix delete key

This commit is contained in:
bretello 2020-04-06 19:45:22 +02:00
parent 3101f2047c
commit 8bd637dc6b

View File

@ -34,6 +34,9 @@ setopt NO_HIST_VERIFY
# https://www.xkcd.com/378/
export EDITOR="vim" # if antibody_plugins.txt includes robbyrussell/oh-my-zsh path:plugins/vi-mode, this also sets `bindkey -v`
# Fix delete (delete! not backspace) key
bindkey -a '^[[3~' delete-char
export KEYTIMEOUT=1 # reduce the transition time between vim modes to 0.1s
export HISTSIZE=100000