From 62e555f90647d43057b295277ecf10124ef08e14 Mon Sep 17 00:00:00 2001 From: anntnzrb <51257127+anntnzrb@users.noreply.github.com> Date: Tue, 4 Aug 2020 09:14:03 -0500 Subject: [PATCH 1/2] Prevent user-defined aliases/commands checking (#785) #748 There's no stdout/stderr on this condition. --- .config/aliasrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.config/aliasrc b/.config/aliasrc index 468483a..39ac509 100644 --- a/.config/aliasrc +++ b/.config/aliasrc @@ -1,7 +1,7 @@ #!/bin/sh # Use neovim for vim if present. -command -v nvim >/dev/null && alias vim="nvim" vimdiff="nvim -d" +[ -x "$(command -v nvim)" ] && alias vim="nvim" vimdiff="nvim -d" # Verbosity and settings that you pretty much just always are going to want. alias \ From a30f0aac45a866c2e6bde797d83e93fb12ee165b Mon Sep 17 00:00:00 2001 From: Conrado Fonseca Date: Wed, 26 Aug 2020 22:48:09 +0100 Subject: [PATCH 2/2] Reduce escape delay time in tmux (#802) --- .config/tmux/tmux.conf | 1 + 1 file changed, 1 insertion(+) diff --git a/.config/tmux/tmux.conf b/.config/tmux/tmux.conf index 6d85cc7..d7e74f7 100644 --- a/.config/tmux/tmux.conf +++ b/.config/tmux/tmux.conf @@ -12,6 +12,7 @@ setw -g automatic-rename set -g mouse on set -g history-limit 30000 set -g terminal-overrides 'xterm*:smcup@:rmcup@' +set -sg escape-time 20 # faster escape delay time set-option -g status-justify right set-option -g status-bg black # colour213 # pink set-option -g status-fg cyan