diff options
| author | Ahmed Abdelhalim <[email protected]> | 2025-10-20 16:39:58 +0200 |
|---|---|---|
| committer | Ahmed Abdelhalim <[email protected]> | 2025-10-20 16:42:10 +0200 |
| commit | 08e817eeb0d62dc8afc8dbd416971b68854036b2 (patch) | |
| tree | a76fe5713e00a8c55a76c8122c868978a4b72b2b /.tmux.conf | |
| parent | a0f646e8c14db26eb13f8336a7cc8937d9c476b2 (diff) | |
Refactoring of bash_profile and remove deprecated homebrew token
The token didn't have any permissions, was used to just increase the
rate limit when it was reached.
This is why it's ok to leave it in the history after it has been
revoked.
This also fixes and adds some dependencies using homebrew
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 |
