From 146dd16f7b8ad72d1bdf991d65873d51d4bd8280 Mon Sep 17 00:00:00 2001 From: Franck Cuny Date: Mon, 12 Dec 2016 09:19:57 -0800 Subject: [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. --- tmux.conf | 8 +------- 1 file changed, 1 insertion(+), 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}" -- cgit 1.4.1