diff options
| author | Mitja Felicijan <mitja.felicijan@gmail.com> | 2025-02-10 06:15:50 +0100 |
|---|---|---|
| committer | Mitja Felicijan <mitja.felicijan@gmail.com> | 2025-02-10 06:15:50 +0100 |
| commit | db8dd67caa7363c2088ea8f99f547048b195a087 (patch) | |
| tree | cc2eadbfc13fba39ef2a60ffc98342c3354d3bcf /.tmux.conf | |
| parent | 69583ca02a3033d1a22523984258930ef31490a6 (diff) | |
| download | dotfiles-db8dd67caa7363c2088ea8f99f547048b195a087.tar.gz | |
Added different key for macos tmux
Diffstat (limited to '.tmux.conf')
| -rw-r--r-- | .tmux.conf | 11 |
1 files changed, 9 insertions, 2 deletions
| @@ -5,8 +5,15 @@ set-option -g set-titles on | |||
| 5 | set-option -sg escape-time 10 | 5 | set-option -sg escape-time 10 |
| 6 | set-option -g mouse off | 6 | set-option -g mouse off |
| 7 | 7 | ||
| 8 | set -g prefix M-x | 8 | if-shell "uname | grep -q Linux" { |
| 9 | bind M-x send-prefix | 9 | set -g prefix M-x |
| 10 | bind M-x send-prefix | ||
| 11 | } | ||
| 12 | |||
| 13 | if-shell "uname | grep -q Darwin" { | ||
| 14 | set -g prefix M-z | ||
| 15 | bind M-z send-prefix | ||
| 16 | } | ||
| 10 | 17 | ||
| 11 | set -g base-index 1 | 18 | set -g base-index 1 |
| 12 | set-window-option -g pane-base-index 1 | 19 | set-window-option -g pane-base-index 1 |
