diff options
author | xero <x@xero.nu> | 2014-11-16 16:46:44 -0500 |
---|---|---|
committer | xero <x@xero.nu> | 2014-11-16 16:46:44 -0500 |
commit | e984fb1dc5db0f3229f3732ec6021a801999dcac (patch) | |
tree | 8793e0c5abd93944a48c38669288bfe77a05f318 /tmux | |
parent | 554812336d2a6a140cdec66ad587cf9e3b71d457 (diff) | |
download | dotfiles_ascii-e984fb1dc5db0f3229f3732ec6021a801999dcac.tar.xz dotfiles_ascii-e984fb1dc5db0f3229f3732ec6021a801999dcac.zip |
tmux updates
Diffstat (limited to 'tmux')
-rw-r--r-- | tmux/.tmux.conf | 15 |
1 files changed, 9 insertions, 6 deletions
diff --git a/tmux/.tmux.conf b/tmux/.tmux.conf index d853e98..708e23f 100644 --- a/tmux/.tmux.conf +++ b/tmux/.tmux.conf @@ -69,8 +69,8 @@ bind : command-prompt # panes set -g mouse-select-pane on -set -g pane-border-fg black -set -g pane-active-border-fg brightred +set -g pane-border-fg blue +set -g pane-active-border-fg brightblue #set -g pane-active-border-attr blink # resize panes with mouse (drag borders) set -g mouse-select-pane on @@ -80,18 +80,21 @@ set -g mouse-resize-pane on set -g status-utf8 on set -g status-justify left set -g status-bg default -set -g status-fg colour12 +set -g status-fg blue set -g status-interval 2 # messaging set -g message-fg black -set -g message-bg yellow +set -g message-bg blue set -g message-command-fg blue set -g message-command-bg black #window mode -setw -g mode-bg colour6 -setw -g mode-fg colour0 +setw -g mode-bg blue +setw -g mode-fg black + +#resizing +setw -g aggressive-resize on # window status #setw -g window-status-format " #F#I:#W#F " |