gdritter repos dotfiles / dfddaa7
tmux color nonsense Getty Ritter 2 months ago
2 changed file(s) with 7 addition(s) and 1 deletion(s). Collapse all Expand all
1919 export EDITOR="emacs -nw"
2020 export BASHFILESIZE=50000
2121 export HISTSIZE=5000
22
23 # allow different machines to customize their tmux colors
24 if [ -n "$TMUX" ]; then
25 if [ -e "$HOME/.tmux-color" ]; then
26 tmux set-option -a status-style bg="$(cat ~/.tmux-color)"
27 fi
28 fi
44 bind C-j send-prefix
55
66 # change some colors
7 set -g status-bg red
87 bind-key U capture-pane \; save-buffer /tmp/tmux-buffer \; new-window -n "urlview" '$SHELL -c "urlview < /tmp/tmux-buffer"'