blob: 410b26117a9ebebcf2e9b8f2daf2fe679c39afca (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
 | set -s escape-time 0
set -g history-limit 50000
set -g display-time 4000
set -g status-interval 5
set -g default-terminal "screen-256color"
set -g focus-events on
set -g @plugin 'o0th/tmux-nova'
bind R source-file '/home/compromyse/.tmux.conf'
unbind C-b
set-option -g prefix C-x
bind-key C-x send-prefix
bind | split-window -h
bind - split-window -v
unbind '"'
unbind %
set -g mouse on
set-option -s set-clipboard off
bind-key -T copy-mode-vi MouseDragEnd1Pane send-keys -X copy-pipe-and-cancel "xclip -selection clipboard -i"
bind-key r command-prompt -I "#W" "rename-window '%%'"
bind-key b attach-session -c "#{pane_current_path}"
bind-key x kill-pane
set -g @nova-rows 0
set -g @nova-pane "#I: #W"
run '~/.tmux/plugins/tpm/tpm'
 |