kickstart.nvim/.tmux.conf

28 lines
802 B
Plaintext

bind-key -r f run-shell "tmux neww ~/repo/config/tmux-s"
set-option -g prefix C-Space
unbind C-b
bind C-Space send-prefix
setw -g mode-keys vi
bind -T copy-mode-vi v send -X begin-selection
bind -T copy-mode-vi y send-keys -X copy-pipe-and-cancel "pbcopy"
bind P paste-buffer
bind -T copy-mode-vi MouseDragEnd1Pane send-keys -X copy-pipe-and-cancel "pbcopy"
set -g mouse on
set -g base-index 1
set -g status-style 'fg=red'
set -g status-left ' #S '
set -g status-left-length 20
set -g status-right ''
set -g status-bg black
setw -g window-status-current-style 'fg=black bg=red'
setw -g window-status-current-format ' #I #W #F '
setw -g window-status-style 'fg=red bg=black'
setw -g window-status-format ' #I #[fg=white]#W #[fg=yellow]#F '
setw -g window-status-bell-style 'fg=yellow bg=red bold'