1
Fork 0
satellite/dotfiles/tmux/tmux.conf

44 lines
1.2 KiB
Plaintext
Raw Normal View History

2022-03-08 11:12:09 +01:00
# remap prefix to Control + a
set -g prefix C-a
unbind C-b
bind C-a send-prefix
2022-03-09 19:03:04 +01:00
# don't rename windows automatically
set-option -g allow-rename off
2022-03-09 01:15:44 +01:00
2022-03-09 19:03:04 +01:00
# Visual stuff
2022-06-18 23:09:21 +02:00
set -g default-terminal "screen-256color"
set-option -ga terminal-overrides ",screen-256color:Tc"
2022-03-09 19:03:04 +01:00
set -g -a terminal-overrides ',*:Ss=\E[%p1%d q:Se=\E[2 q' # Supposedly helps with cursor shapes under vim (spoiler: it does not)
2022-03-08 11:12:09 +01:00
2022-03-09 19:03:04 +01:00
# Split panes with \ and -
bind \\ split-window -h
bind - split-window -v
unbind '"'
unbind %
# Zooming
unbind C-z
bind -n C-z resize-pane -Z
2022-03-08 11:12:09 +01:00
2022-03-08 22:26:20 +01:00
# Vim-mode
set-window-option -g mode-keys vi
# Vim like mode for leaving insert mode
unbind [ # unbind the default way to copy text
2022-03-09 19:03:04 +01:00
bind -T prefix j copy-mode # allow exiting insert mode with C-a j
# Vim like keybinds for copying and pasting
bind -T copy-mode-vi p paste-buffer
bind -T copy-mode-vi V send-keys -X rectangle-toggle # Check if this works
bind -T copy-mode-vi v send-keys -X begin-selection
bind -T copy-mode-vi y send-keys -X copy-selection
2022-05-11 23:11:54 +02:00
# Copy to clipboard using fastcopy
set-option -g set-clipboard on
set-option -g @fastcopy-action 'tmux load-buffer -w -'
set-option -g @fastcopy-key a
# Keep state around using resurrect
set -g @resurrect-processes '"~python3"'