diff options
author | Franck Cuny <franck@lumberjaph.net> | 2015-07-06 11:46:36 -0700 |
---|---|---|
committer | Franck Cuny <franck@lumberjaph.net> | 2015-07-06 11:46:36 -0700 |
commit | 3d10fafdfc888b43d91aebf45cb6022f4f3c3203 (patch) | |
tree | 61bd8c8475beaa5f86f2e78d1e4d3b7ea625eb84 /tmux.conf | |
parent | create repository (diff) | |
download | emacs.d-3d10fafdfc888b43d91aebf45cb6022f4f3c3203.tar.gz |
configuration files
Diffstat (limited to '')
-rw-r--r-- | tmux.conf | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/tmux.conf b/tmux.conf new file mode 100644 index 0000000..0194bde --- /dev/null +++ b/tmux.conf @@ -0,0 +1,29 @@ +set -g prefix ^z +unbind C-b +set -g default-terminal "screen-256color" +set -g mouse-select-pane on +set -g history-limit 4096 +set -g status on +set -g set-titles on +set -g renumber-windows on +setw -g utf8 on +setw -g aggressive-resize on + +set -g escape-time 50 + +bind f send-prefix +bind ^F choose-window +bind ^N new-window +bind ^D detach-client +bind ^[ copy-mode +bind | split-window -h +bind - split-window -v + +new-session -s work +new-session -s main +new-session -s misc + +set -g status-right '#h' + +set -g status-bg white +set -g status-fg black |