diff options
author | Franck Cuny <franck.cuny@gmail.com> | 2017-01-02 13:42:44 -0800 |
---|---|---|
committer | Franck Cuny <franck.cuny@gmail.com> | 2017-01-02 13:42:44 -0800 |
commit | d9b789a49f58bf64f09b947049df71a45d169ea6 (patch) | |
tree | 7a262b6e7e9422c47401fd7e9e8efae9db041a06 | |
parent | [Emacs] Update a comment. (diff) | |
download | emacs.d-d9b789a49f58bf64f09b947049df71a45d169ea6.tar.gz |
[tmux] Simplify by removing a few things I don't use
Diffstat (limited to '')
-rw-r--r-- | tmux.conf | 24 |
1 files changed, 3 insertions, 21 deletions
diff --git a/tmux.conf b/tmux.conf index f0740a4..1c950a6 100644 --- a/tmux.conf +++ b/tmux.conf @@ -3,39 +3,21 @@ set-option -g prefix C-z unbind-key C-b bind C-t send-prefix +# show the status set -g status on -set -g default-terminal "screen-256color" - -# move pane like Vim -bind h select-pane -L -bind j select-pane -D -bind k select-pane -U -bind l select-pane -R # split window bind _ split-window -v -c "#{pane_current_path}" bind | split-window -h -c "#{pane_current_path}" -# move last window -bind C-z last-window -bind o last-pane - # Option set-window-option -g mode-keys vi -# resize pane -bind -r H resize-pane -L 2 -bind -r L resize-pane -R 2 -bind -r J resize-pane -D 2 -bind -r K resize-pane -U 2 - -bind i display-panes - # renumber window set-option -g renumber-windows on -# don't rename the window -set-option -g allow-rename off +# rename the window +set-option -g allow-rename on # start at 1 set-option -g base-index 1 |