summaryrefslogtreecommitdiff
path: root/.tmux.conf
diff options
context:
space:
mode:
authorMike Crute <mcrute@gmail.com>2016-06-25 11:31:13 -0700
committerMike Crute <mike@crute.us>2016-06-25 11:31:13 -0700
commit89413aab7d67763871eb868ccc1cf735434d47af (patch)
treee740eb0661f0b1f01bdca3cf80a9210c2cbbd194 /.tmux.conf
parentebc4d80ec7a2633c173d37980dc4bd51825f4c3e (diff)
downloaddotfiles-89413aab7d67763871eb868ccc1cf735434d47af.tar.bz2
dotfiles-89413aab7d67763871eb868ccc1cf735434d47af.tar.xz
dotfiles-89413aab7d67763871eb868ccc1cf735434d47af.zip
Use single temp folder
Diffstat (limited to '.tmux.conf')
-rw-r--r--[l---------].tmux.conf39
1 files changed, 38 insertions, 1 deletions
diff --git a/.tmux.conf b/.tmux.conf
index d7570cd..6d2640c 120000..100644
--- a/.tmux.conf
+++ b/.tmux.conf
@@ -1 +1,38 @@
1.tmux/tmux.conf \ No newline at end of file 1set-option -g default-command "reattach.sh"
2
3set -g utf8 on
4
5# Resize to the smallest client actively looking at a screen
6# https://mutelight.org/practical-tmux
7set -g aggressive-resize on
8
9# Default to emacs because that's everyone else's default
10# tmux chooses vim keys because my EDITOR is vim
11set -g mode-keys emacs
12
13# Key bindings
14bind k clear-history
15bind . set status off
16bind > set status on
17
18set -g status-interval 10
19set -g status-fg default
20set -g message-fg default
21set -g message-bg default
22set -g status-justify centre
23
24set-window-option -g window-status-current-attr default
25set-window-option -g window-status-current-bg default
26set-window-option -g window-status-current-fg colour199
27
28# White on Black
29set -g status-bg colour234
30bind | set -g status-bg colour234
31
32# Black on White
33bind \ set -g status-bg colour255
34
35set -g status-left-length 100
36set -g status-right-length 100
37set -g status-left "#(cat ~/.tmp/tmux_status_left.cache)"
38set -g status-right "#(cat ~/.tmp/tmux_status_right.cache)"