tmux color nonsense
Getty Ritter
8 months ago
19 | 19 |
export EDITOR="emacs -nw"
|
20 | 20 |
export BASHFILESIZE=50000
|
21 | 21 |
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
|
4 | 4 |
bind C-j send-prefix
|
5 | 5 |
|
6 | 6 |
# change some colors
|
7 | |
set -g status-bg red
|
8 | 7 |
bind-key U capture-pane \; save-buffer /tmp/tmux-buffer \; new-window -n "urlview" '$SHELL -c "urlview < /tmp/tmux-buffer"'
|