diff options
author | Patrick Simianer <p@simianer.de> | 2016-04-14 17:32:44 +0200 |
---|---|---|
committer | Patrick Simianer <p@simianer.de> | 2016-04-14 17:32:44 +0200 |
commit | 79b7582c400720d0b55e3aed2768a8eb1e3958df (patch) | |
tree | ffae4d4f7884d8f4e09ba0c2d1176ed725bfc247 | |
parent | b7b74e602e7da3dcf19554eff8bfedf5645246f3 (diff) |
tmux
-rw-r--r-- | tmux/.tmux.cluster.conf (renamed from tmux/.tmux.CLuster.conf) | 0 | ||||
-rw-r--r-- | tmux/.tmux.lemmy.conf | 36 |
2 files changed, 36 insertions, 0 deletions
diff --git a/tmux/.tmux.CLuster.conf b/tmux/.tmux.cluster.conf index 6364e4e..6364e4e 100644 --- a/tmux/.tmux.CLuster.conf +++ b/tmux/.tmux.cluster.conf diff --git a/tmux/.tmux.lemmy.conf b/tmux/.tmux.lemmy.conf new file mode 100644 index 0000000..c84291b --- /dev/null +++ b/tmux/.tmux.lemmy.conf @@ -0,0 +1,36 @@ +# act like vim +setw -g mode-keys vi +bind h select-pane -L +bind j select-pane -D +bind k select-pane -U +bind l select-pane -R +bind-key -r C-h select-window -t :- +bind-key -r C-l select-window -t :+ + +# act like GNU screen +unbind C-b +set -g prefix C-a + +# look good +set -g default-terminal "screen-256color" + +# status +set -g status-left-length 32 +set -g status-right-length 150 +set -g status-fg white +set -g status-bg colour234 +set -g window-status-activity-attr bold +set -g pane-border-fg colour245 +set -g pane-active-border-fg yellow +set -g message-fg colour16 +set -g message-bg colour221 +set -g message-attr bold +set -g status-left '' +set -g status-right '#[underline]#[fg=white,bg=black,bold] #H:#S' +set-option -g set-titles on +set -g set-titles-string '#T -- #W' +set-window-option -g automatic-rename on +set-option -g status-interval 1 +set-option -g status-utf8 on +set-window-option -g utf8 on + |