-
Notifications
You must be signed in to change notification settings - Fork 0
/
tmux.conf
83 lines (60 loc) · 3.05 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
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
73
74
75
76
77
78
79
80
81
# List of plugins
# # Supports `github_username/repo` or full git repo URLs
set -g @tpm_plugins ' \
tmux-plugins/tpm \
tmux-plugins/tmux-sensible \
tmux-plugins/tmux-yank \
'
# # Other examples:
# # github_username/plugin_name \
# # git@github.com/user/plugin \
# # git@bitbucket.com/user/plugin \
#
# # Initializes TMUX plugin manager.
# # Keep this line at the very bottom of tmux.conf.
run-shell '~/.tmux/plugins/tpm/tpm'
# --- colors (solarized dark)
# set shell
set-option -g default-shell /bin/zsh
# default statusbar colors
set -g status-bg black
set -g status-fg yellow
set -g status-attr default
# default window title colors
setw -g window-status-fg brightblue
setw -g window-status-bg default
# active window title colors
setw -g window-status-current-fg yellow
setw -g window-status-current-bg default
setw -g window-status-current-attr dim
# pane border
set -g pane-border-fg black
set -g pane-border-bg default
set -g pane-active-border-fg yellow
set -g pane-active-border-bg default
# command line/message text
set -g message-bg black
set -g message-fg yellow
# pane number display
set -g display-panes-active-colour yellow
set -g display-panes-colour brightblue
set -g clock-mode-colour yellow
# --- end colors
set -g status on
set -g status-utf8 on
#mouse config
setw -g mode-mouse on
set -g mouse-select-pane on
set -g mouse-resize-pane on
set -g mouse-select-window on
source "/usr/share/powerline/tmux/powerline.conf"
#source "/usr/share/powerline/tmux/powerline_tmux_1.9_plus.conf"
unbind C-p
bind C-i run "cmus-remote --prev"
bind C-o run "cmus-remote --next"
bind C-p run "cmus-remote --pause"
bind C-c run-shell -b "tmux show-buffer | xsel -i -b"
#bind C-v run "tmux set-buffer -- \"$(xsel -o -b)\"; tmux paste-buffer"
#resolv status line
#set -g utf8
#set-option -g status-position top