-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.tmux.conf
44 lines (39 loc) · 1.24 KB
/
.tmux.conf
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
35
36
37
38
39
40
41
42
43
44
# defaults
set -g history-limit 10000
set-option -g prefix C-a
unbind-key C-b
bind-key C-a send-prefix
setw -g mode-keys vi
setw -g monitor-activity on
set -g visual-activity on
set -g base-index 1
setw -g xterm-keys on
source-file ~/.tmux/iceberg_minimal.tmux.conf
set -g default-terminal "xterm-256color"
set -ga terminal-overrides ",xterm-256color:Tc"
unbind r
bind r source-file ~/.tmux.conf \; display ".tmux.conf reloaded..."
# enable mouse mode + activity monitering
setw -g monitor-activity on
set -g visual-activity on
set -g mouse on
# set window split
bind-key C-l send-keys 'C-l'
bind-key v split-window -h
bind-key b split-window
# plugins
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'wfxr/tmux-fzf-url'
set -g @plugin 'tmux-plugins/tmux-open'
set -g @plugin 'schasse/tmux-jump'
set -g @plugin 'benmills/vimux'
set -g @plugin 'fszymanski/tmux-urlscan'
set -g @plugin 'xamut/tmux-spotify'
set -g @plugin 'Mpdreamz/tmux-cmus'
# conf
set -g @open-S 'https://www.duckduckgo.com/'
set-option -g @urlscan-prog 'urlscan'
set-option -g @urlscan-key 'u'
set -g @jump-key 'j'
set-option -g update-environment 'DISPLAY SSH_ASKPASS SSH_AUTH_SOCK SSH_AGENT_PID SSH_CONNECTION WINDOWID XAUTHORITY DBUS_SESSION_BUS_ADDRESS'
run -b '~/.tmux/plugins/tpm/tpm'