summary refs log tree commit diff
path: root/tmux.conf
diff options
context:
space:
mode:
authorFranck Cuny <franck.cuny@gmail.com>2016-12-12 09:19:57 -0800
committerFranck Cuny <franck.cuny@gmail.com>2016-12-12 09:19:57 -0800
commit146dd16f7b8ad72d1bdf991d65873d51d4bd8280 (patch)
treec510d0bb88a3117905854ad2cd998bccf2b6265f /tmux.conf
parent[vim] Add basic configuration for vim. (diff)
downloademacs.d-146dd16f7b8ad72d1bdf991d65873d51d4bd8280.tar.gz
[tmux] New window PATH is $HOME
When I create a new window, I want to start in $HOME, not in the
directory the previous window is.

Show the status bar, and don't mess with colors.
Diffstat (limited to 'tmux.conf')
-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}"