Ticket #47997: tmuxconf

File tmuxconf, 1.0 KB (added by m74z00219@…, 9 years ago)

.tmux.conf

Line 
1# Configuration file for tmux
2
3
4#APPEARANCE
5#==========
6
7# panes:
8set-option -g pane-border-fg white
9set-option -g pane-border-bg default
10set-option -g pane-active-border-fg green
11set-option -g pane-active-border-bg default
12
13# border colours (most excellent!)
14set -g pane-active-border-bg default
15#set -g pane-active-border-fg red
16
17# clock-mode
18set-window-option -g clock-mode-colour cyan
19set-window-option -g clock-mode-style 24
20
21# start window indexing at one instead of zero
22set -g base-index 1
23
24
25
26
27# Plugin manager stuff needs to be at bottom!
28
29# List of plugins
30# Supports `github_username/repo` or full git repo URLs
31set -g @tpm_plugins '              \
32  tmux-plugins/tpm                 \
33  tmux-plugins/tmux-pain-control   \
34  tmux-plugins/tmux-sessionist     \
35  tmux-plugins/tmux-yank           \
36'
37# Other examples:
38# github_username/plugin_name    \
39# git@github.com/user/plugin     \
40# git@bitbucket.com/user/plugin  \
41
42# Initializes TMUX plugin manager.
43# Keep this line at the very bottom of tmux.conf.
44run-shell '~/.git/tmux-plugin-manager/tpm/tmp'
45
46