-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.tmux.conf
More file actions
26 lines (26 loc) · 1.07 KB
/
.tmux.conf
File metadata and controls
26 lines (26 loc) · 1.07 KB
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
unbind-key c-b
set-option -g prefix c-a
set-window-option -g mode-keys vi
# Reload
bind-key R source-file ~/.tmux.conf \; display-message "Reloaded!"
bind-key Escape copy-mode
bind-key p paste-buffer
bind-key P choose-buffer
#bind-key + delete-buffer \; display-message "Deleted current Tmux Clipboard History"
bind-key J resize-pane -D 10
bind-key K resize-pane -U 10
bind-key L resize-pane -R 10
bind-key H resize-pane -L 10
bind-key j resize-pane -D
bind-key k resize-pane -U
bind-key l resize-pane -R
bind-key h resize-pane -L
bind-key -T copy-mode-vi v send -X begin-selection
bind-key -T copy-mode-vi y send-keys -X copy-pipe-and-cancel "pbcopy"
bind-key < run-shell "tmux set-buffer -- \"$(xsel -o -b)\"" \; display-message "Copy To Tmux Clipboard"
bind-key > run-shell 'tmux show-buffer | xsel -i -b' \; display-message "Copy To System Clipboard"
#bind-key -T copy-mode-vi y send-keys -X copy-pipe "xclip -in -selection clipboard"'
run '/usr/share/tmux-plugin-manager/tpm'
set -g @plugin 'sainnhe/tmux-fzf'
set-option -sg escape-time 10
set-option -g default-terminal "screen-256color"