commit 779611c745961c82a8fb3fd1fa467b5aa81ec60b (patch)
parent b87f096174afcb3abfd49b7c58e5915ee59f160c
Author: Alex Karle <alex@alexkarle.com>
Date: Tue, 23 Feb 2021 13:48:15 -0500
tmux: Revert to default status
At this point, the status that I had was -basically- the same as the
default (with the addition of a username). No need to keep it around!
Diffstat:
1 file changed, 2 insertions(+), 9 deletions(-)
diff --git a/.tmux.conf b/.tmux.conf
@@ -20,7 +20,6 @@ if "test $TERM = 'st-256color' -o $TERM = 'xterm-256color'" \
#----------#
# Bindings #
#----------#
-
# remap prefix from 'C-b' to 'C-a'
unbind C-b
bind C-a send-prefix
@@ -54,15 +53,9 @@ bind -T copy-mode-vi H send -X start-of-line \; send -X search-again \; send -X
bind P copy-mode \; send -X search-backward "/" \; send -X begin-selection \; send -X next-space-end \; send -X other-end \; send -X previous-space
bind -T copy-mode-vi P send -X clear-selection \; send -X start-of-line \; send -X search-again \; send -X begin-selection \; send -X next-space-end \; send -X other-end \; send -X previous-space
+
#-------#
-# THEME #
+# Other #
#-------#
-
-# Status
-set -g status-interval 60
-set -g status-left-length 20
-set -g status-right "[$USER@#h] %D %H:%M"
-set -g status-right-length 90
-
# Finally, let the .local copy override anything here
if 'test -e $HOME/.tmux.conf.local' 'source-file $HOME/.tmux.conf.local'