Skip to content

Commit 1aa8466

Browse files
committed
feat(tmux): enhance usability with tmux-sensible
- Add Space key binding to switch to last window - Increase scroll back buffer to 50000 lines - Increase message display duration to 2000 milliseconds - Enable focus events for better integration
1 parent bc7ae26 commit 1aa8466

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

dot_config/tmux/tmux.conf

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ set -g default-terminal "tmux-256color"
66
unbind C-b
77
set -g prefix C-Space
88
bind C-Space send-prefix
9+
bind Space last-window
910

1011
# Start numbering at 1
1112
set -g base-index 1
@@ -16,6 +17,15 @@ set -g renumber-windows on
1617
# Allows for faster key repetition
1718
set -s escape-time 0
1819

20+
# Increase scrollback buffer size
21+
set -g history-limit 50000
22+
23+
# Increase messages display duration
24+
set -g display-time 2000
25+
26+
# Enable focus events
27+
set -g focus-events on
28+
1929
# Enable scroll mouse
2030
set -g mouse on
2131

0 commit comments

Comments
 (0)