diff options
| author | srdusr <trevorgray@srdusr.com> | 2024-03-08 05:31:30 +0200 |
|---|---|---|
| committer | srdusr <trevorgray@srdusr.com> | 2024-03-08 05:31:30 +0200 |
| commit | bf454683e44ffb71816057c9e94d8a2b9edf28e5 (patch) | |
| tree | a4a19515ca38c48e36a89b07ce8b99a613916fb1 /.config/zsh/.zshrc | |
| parent | 44e598b635abe0bf6cfddf9377c309b5aa1e734b (diff) | |
| download | dotfiles-bf454683e44ffb71816057c9e94d8a2b9edf28e5.tar.gz dotfiles-bf454683e44ffb71816057c9e94d8a2b9edf28e5.zip | |
Changed source directory for modules from "lib" to "user" and changed keytimeout
Diffstat (limited to '.config/zsh/.zshrc')
| -rw-r--r-- | .config/zsh/.zshrc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/.config/zsh/.zshrc b/.config/zsh/.zshrc index 4aa6f28..aca362f 100644 --- a/.config/zsh/.zshrc +++ b/.config/zsh/.zshrc @@ -6,7 +6,7 @@ # ███████╗███████║██║ ██║██║ ██║╚██████╗ # ╚══════╝╚══════╝╚═╝ ╚═╝╚═╝ ╚═╝ ╚═════╝ -for zsh_source in "$HOME"/.config/zsh/lib/*.zsh; do +for zsh_source in "$HOME"/.config/zsh/user/*.zsh; do source $zsh_source done @@ -14,7 +14,7 @@ done [[ $- != *i* ]] && return if [[ -n "$SSH_CLIENT" ]]; then - export KEYTIMEOUT=1 + export KEYTIMEOUT=10 else export KEYTIMEOUT=15 fi @@ -36,6 +36,7 @@ stty intr '^q' # free Ctrl+C for copy use Ctrl+q instead stty lnext '^-' # free Ctrl+V for paste use ^- instead stty stop undef # Disable ctrl-s to freeze terminal. stty start undef +#COMPLETION_WAITING_DOTS="false" #unsetopt BEEP ########## Source Plugins, should be last ########## |
