diff options
Diffstat (limited to '.tmux.conf')
| -rw-r--r-- | .tmux.conf | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -5,7 +5,7 @@ set-option -g mouse on # mouse behavior set-option -g base-index 1 # start indexing from 1 not 0 set-option -g pane-base-index 1 # start indexing from 1 not 0 set-option -g renumber-windows on # renumber the windows after closing windows -set-option -g history-limit 10000 # Scroll History limit +set-option -g history-limit 100000 # Scroll History limit set-option -g display-time 4000 # window/status messages are displayed for 4 seconds set-option -g display-panes-time 4000 # pane messages are displayed for 4 seconds set-option -g focus-events on # focus events enabled for terminals that support them @@ -35,6 +35,9 @@ bind l select-pane -R # Load OSX specific configurations to add (fix copy) if-shell 'test "$(uname)" = "Darwin"' 'source ~/.tmux-osx.conf' +# Unbind Ctrl+R in copy mode to prevent interference with Claude Code +unbind -T copy-mode C-r + # For better tmux support disable MacOS conflicting settings (to work better with control + arrows): # System Preferences > Keyboard > Shortcuts > Mission Control # System Preferences > Keyboard > Shortcuts > Mission Control > move (left | right) a space |
