-
Notifications
You must be signed in to change notification settings - Fork 3
/
tmux.conf.symlink
executable file
·72 lines (56 loc) · 1.63 KB
/
tmux.conf.symlink
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
unbind C-b
set-option -g prefix C-a
bind-key C-a send-prefix
bind | split-window -h
bind - split-window -v
unbind '"'
unbind %
bind r source-file ~/.tmux.conf
# easy movement between panes
bind -n M-Left select-pane -L
bind -n M-Right select-pane -R
bind -n M-Up select-pane -U
bind -n M-Down select-pane -D
#resize panes:
bind -r H resize-pane -L 10
bind -r J resize-pane -D 10
bind -r K resize-pane -U 10
bind -r L resize-pane -R 10
# mouse
#set -g mouse-select-window on
#set -g mouse-select-pane on
#set -g mouse-resize-pane on
set -g mouse on
#set -g default-command "reattach-to-user-namespace -l zsh"
# tmux display things in 256 colors
set -g default-terminal "screen-256color"
set -g status-utf8 on
set -g history-limit 20000
# automatically renumber tmux windows
set -g renumber-windows on
set -g base-index 1
set -g pane-base-index 1
#Plugins
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
set -g @plugin 'a-morales/stylux'
set -g @plugin 'tmux-plugins/tmux-resurrect'
set -g @plugin 'tmux-plugins/tmux-continuum'
#set -g @plugin 'seebi/tmux-colors-solarized'
set -g @seperators "powerline"
#set -g @seperators 'dithered'
set -g status-left "#{prefix_highlight}"
set -g status-right "%e %b, %H:%M | #H"
set -g status-justify left
set -g status-left-length 80
set -g status-right-length 80
set -g @primary-color "blue"
set -g @secondary-color "red"
set -g @left-bg-list "blue, black"
set -g @left-fg-list "black, blue"
set -g @right-bg-list "blue, black"
set -g @right-fg-list "black, blue"
#automatic window restore
set -g @continuum-restore 'on'
#set -g @colors-solarized 'light'
run '~/.tmux/plugins/tpm/tpm'