From 3dcd8f18b3ce687910d7b4989d0c33f85acab6be Mon Sep 17 00:00:00 2001 From: xfnw Date: Wed, 9 Jun 2021 15:24:11 -0400 Subject: [PATCH] turn off the mouse on tmux lol --- .tmate.conf | 60 +++++++++++++++++++++++++++++++++++++++++++++++++++++ .tmux.conf | 2 -- 2 files changed, 60 insertions(+), 2 deletions(-) create mode 100644 .tmate.conf diff --git a/.tmate.conf b/.tmate.conf new file mode 100644 index 0000000..9a64f77 --- /dev/null +++ b/.tmate.conf @@ -0,0 +1,60 @@ +# Usage options + +## Always tell windows we can use 256 colors. +set-option -g default-terminal "tmux-256color" + +## Set scrollback length. +set-option -g history-limit 20000 + +## Send xterm(1) focus events to windows running under the server. +set-option -g focus-events on + +## Indicate modifiers like shift/alt/ctrl using xterm(1) sequences. +set-option -g xterm-keys on + +## Set terminal (client) titles appropriately. +set-option -g set-titles on +set-option -g set-titles-string "tmux - #T" + +## Don't make Esc usage have a delay (which is annoying when using kak(1)). +set-option -g escape-time 25 + +# Style +## Status bar colors. +set-option -g status-left-style "fg=colour10" +set-option -g status-right-style "fg=colour10" +set-option -g status-style "bg=default,fg=colour10" + +## Pane colors. +set-option -g pane-active-border-style "bg=default,fg=colour10" + +## Window entries (in status bar) colors. +set-option -g window-status-activity-style "bg=default,fg=colour235,bold,reverse" +set-option -g window-status-bell-style "bg=default,fg=white,bold,reverse" +set-option -g window-status-current-style "bg=default,fg=colour10,bold,reverse" +set-option -g window-status-style "bg=default,fg=colour10" + +# Status bar + +set-option -g status on +set-option -g status-interval 5 +set-option -g status-position top +set-option -g status-justify left + +## Window format, akin to catgirl(1). +set-option -g window-status-format " #I #W " +set-option -g window-status-separator "" +set-option -g window-status-current-format " #I #W " + +## Nothing on the left, a simple clock and hostname (no domain) on the right. +set-option -g status-left "" +set-option -g status-right "#h %I:%M %p" +set-option -g status-left-length 0 + +# Windows +set-option -g monitor-activity on +set-option -g visual-activity on +set-option -g renumber-windows on +set-option -g focus-events on + + diff --git a/.tmux.conf b/.tmux.conf index c900c4e..9a64f77 100644 --- a/.tmux.conf +++ b/.tmux.conf @@ -3,8 +3,6 @@ ## Always tell windows we can use 256 colors. set-option -g default-terminal "tmux-256color" -set-option -g mouse on - ## Set scrollback length. set-option -g history-limit 20000