diff options
| author | David Kaufmann <astra@ionic.at> | 2015-11-17 05:08:49 +0100 |
|---|---|---|
| committer | David Kaufmann <astra@ionic.at> | 2015-12-01 03:50:30 +0100 |
| commit | 3bd0da5059fb84ca82d1422b504b9e25de3694d5 (patch) | |
| tree | cb88bffe2f072eced50489ff2175bf89c95ce089 /skel | |
| parent | f271ad6a8820f4e7190be26eb46e4cd4f6237da2 (diff) | |
| download | config-3bd0da5059fb84ca82d1422b504b9e25de3694d5.tar.gz | |
create initial config for tmux
Diffstat (limited to 'skel')
| -rw-r--r-- | skel/.tmux.conf | 36 |
1 files changed, 36 insertions, 0 deletions
diff --git a/skel/.tmux.conf b/skel/.tmux.conf new file mode 100644 index 0000000..db7a2ed --- /dev/null +++ b/skel/.tmux.conf @@ -0,0 +1,36 @@ +set-option -g prefix C-a +set-option -g prefix2 C-b +bind-key a send-prefix +bind-key b send-prefix -2 +bind-key C-a last-window +bind-key C-b last-pane +bind-key A command-prompt -I'#W' "rename-window '%%'" +bind-key r source-file ~/.tmux.conf +bind-key Escape copy-mode +bind-key Space list-panes +bind-key Enter break-pane + +# Set that stupid Esc-Wait off, so VI works again +set-option -sg escape-time 0 +set-option -g repeat-time 500 + +set-option -g history-limit 16000 +set-option -g default-terminal screen-256color + +set-option -g utf8 on +set-option -g monitor-activity on + +set-option -g mouse-utf8 on +set-option -g mouse-select-pane on +set-option -g mouse-select-window on +set-window-option -g mode-mouse on +set-window-option -g aggressive-resize on + +set-option -g renumber-windows on + +set-option -g status-bg brightgreen +set-option -g status-fg black +set-option -g status-left '[ #H ][ #S ][' +set-option -g status-left-length 32 +set-option -g status-right '][ load #(cut -d " " -f 1-3 /proc/loadavg) ][ %Y-%m-%d %H:%M ]' +set-option -g status-right-length 48 |
