Compare commits

..

No commits in common. "8819cd4d18cefd70c4f70dc2eadd44da490d911b" and "2ac97afdd15c30132b06f708ddc9e026fe924f04" have entirely different histories.

2 changed files with 1 additions and 7 deletions

3
zshenv
View File

@ -8,9 +8,6 @@ HISTFILE=$HOME/.cache/zsh/histfile
HISTSIZE=20000
SAVEHIST=20000
# Remove vi mode switch delay
KEYTIMEOUT=1
# Enable time stats for long lasting commands
REPORTTIME=5

5
zshrc
View File

@ -56,7 +56,7 @@ setopt ignore_eof
setopt nobeep
# Disable tty flow control, allows vim to use '<Ctrl>S'
setopt noflowcontrol; stty -ixon
setopt noflowcontrol
# Enable completions in the middle of a word
setopt completeinword
@ -86,9 +86,6 @@ prompt fresh
# Enable vi mode line editor keymap
bindkey -v
# Enable backspace after returning to viins from vicmd mode
bindkey '^?' backward-delete-char
# Enable yank, change, and delete whole line with 'Y', 'cc', and 'dd'
bindkey -M vicmd 'Y' vi-yank-whole-line