diff options
| author | Luke Smith <luke@lukesmith.xyz> | 2020-08-27 15:32:56 -0400 |
|---|---|---|
| committer | Luke Smith <luke@lukesmith.xyz> | 2020-08-27 15:32:56 -0400 |
| commit | aefea4fd0d21b05b0d290a79a7d708be0aae4e84 (patch) | |
| tree | 9574594efda4d2861b303397b3640036d645489e /.config | |
| parent | 3aa5f8bd4e443915570cf74c4f586b5019757423 (diff) | |
| parent | a30f0aac45a866c2e6bde797d83e93fb12ee165b (diff) | |
| download | eibhear-aefea4fd0d21b05b0d290a79a7d708be0aae4e84.tar.gz eibhear-aefea4fd0d21b05b0d290a79a7d708be0aae4e84.tar.zst eibhear-aefea4fd0d21b05b0d290a79a7d708be0aae4e84.zip | |
Merge branch 'master' of github.com:LukeSmithxyz/voidrice into master
Diffstat (limited to '.config')
| -rw-r--r-- | .config/aliasrc | 2 | ||||
| -rw-r--r-- | .config/tmux/tmux.conf | 1 |
2 files changed, 2 insertions, 1 deletions
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 \ 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 |
