Mercurial
comparison vim-setup/.tmux.conf @ 43:5e6a5d3c6868
[Personal] Moving my vim-set up config here.
| author | MrJuneJune <me@mrjunejune.com> |
|---|---|
| date | Mon, 01 Dec 2025 22:43:40 -0800 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| 42:c2706ffb442b | 43:5e6a5d3c6868 |
|---|---|
| 1 set -g history-limit 500000 | |
| 2 set -g default-terminal "tmux-256color" | |
| 3 set -s escape-time 0 | |
| 4 | |
| 5 setw -g mode-keys vi | |
| 6 set -g mouse on | |
| 7 | |
| 8 bind | split-window -h | |
| 9 bind - split-window -v | |
| 10 | |
| 11 # bind-key -T copy-mode-vi v send-keys -X begin-selection | |
| 12 # bind-key -T copy-mode-vi y send-keys -X copy-pipe-and-cancel "pbcopy" | |
| 13 # # if using xclip | |
| 14 # bind-key -T copy-mode-vi y send-keys -X copy-pipe-and-cancel "xclip -in -selection clipboard" | |
| 15 # # bind-key -T copy-mode-vi y send-keys -X copy-pipe-and-cancel "wl-copy" | |
| 16 | |
| 17 bind h select-pane -L | |
| 18 bind j select-pane -D | |
| 19 bind k select-pane -U | |
| 20 bind l select-pane -R |