1 | # Configuration file for tmux |
---|
2 | |
---|
3 | |
---|
4 | #APPEARANCE |
---|
5 | #========== |
---|
6 | |
---|
7 | # panes: |
---|
8 | set-option -g pane-border-fg white |
---|
9 | set-option -g pane-border-bg default |
---|
10 | set-option -g pane-active-border-fg green |
---|
11 | set-option -g pane-active-border-bg default |
---|
12 | |
---|
13 | # border colours (most excellent!) |
---|
14 | set -g pane-active-border-bg default |
---|
15 | #set -g pane-active-border-fg red |
---|
16 | |
---|
17 | # clock-mode |
---|
18 | set-window-option -g clock-mode-colour cyan |
---|
19 | set-window-option -g clock-mode-style 24 |
---|
20 | |
---|
21 | # start window indexing at one instead of zero |
---|
22 | set -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 |
---|
31 | set -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. |
---|
44 | run-shell '~/.git/tmux-plugin-manager/tpm/tmp' |
---|
45 | |
---|
46 | |
---|