summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tmux.conf8
1 files changed, 1 insertions, 7 deletions
diff --git a/tmux.conf b/tmux.conf
index 6a89ec5..ea2d56b 100644
--- a/tmux.conf
+++ b/tmux.conf
@@ -3,21 +3,15 @@ set-option -g prefix C-z
unbind-key C-b
bind C-t send-prefix
-set -g status off
+set -g status on
set -g default-terminal "screen-256color"
-# messaging
-set -g message-bg colour167
-set -g message-fg black
-
# move pane like Vim
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R
-bind-key c new-window -c "#{pane_current_path}"
-
# split window
bind _ split-window -v -c "#{pane_current_path}"
bind | split-window -h -c "#{pane_current_path}"