diff options
| author | tslil clingman <> | 2019-09-11 19:18:14 -0400 |
|---|---|---|
| committer | tslil clingman <> | 2019-09-11 19:18:14 -0400 |
| commit | ac1a4884d03fc0495c773500d8a13f84b695fa43 (patch) | |
| tree | 29e5ec49e0ce957d80d8f11a155b47840c74f488 /.tmux.conf | |
Init
Diffstat (limited to '.tmux.conf')
| -rw-r--r-- | .tmux.conf | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/.tmux.conf b/.tmux.conf new file mode 100644 index 0000000..c891263 --- /dev/null +++ b/.tmux.conf @@ -0,0 +1,48 @@ +set -g default-terminal "screen-256color" + +set -g status-bg '#DAEFEF' +set -g status-fg black + +setw -g window-status-format "#[fg=black]#[bg=#DAEFEF] #I #W " +setw -g window-status-current-format "#[fg=black]#[bg=#8888CC] * #[bg=#EAEA9E] #W " + +set -g status-left "" +set -g status-right "#[fg=black][ %y.%m.%d %Hh%M #(battery) ]" + +unbind C-b +set -g prefix ^T + +unbind ^T +bind ^T last-window + +unbind C-a + +unbind x +bind x lock-server + +unbind c +bind c new-window + +unbind " " +bind " " next-window + +unbind BSpace +bind BSpace previous-window + +unbind A +bind A command-prompt "rename-window %%" + +unbind w +bind w list-windows + +unbind k +bind k confirm-before "kill-window" + +unbind l +bind l refresh-client + +unbind | +bind | split-window + +unbind '"' +bind '"' choose-window |
