tmux: new status-format, remove some unused keybinds
This commit is contained in:
parent
bbc84b2770
commit
fc05854ed5
1 changed files with 8 additions and 14 deletions
22
tmux.conf
22
tmux.conf
|
@ -16,8 +16,6 @@ bind t command-prompt -p "attach pane to:" "join-pane -t '%%'"
|
||||||
bind y command-prompt break-pane
|
bind y command-prompt break-pane
|
||||||
bind -n M-w next-window
|
bind -n M-w next-window
|
||||||
bind -n M-q previous-window
|
bind -n M-q previous-window
|
||||||
bind -n M-` last-window
|
|
||||||
bind -n M-Escape last-window
|
|
||||||
set -g prefix C-g
|
set -g prefix C-g
|
||||||
set -g update-environment "DISPLAY SSH_ASKPASS SSH_AGENT_PID SSH_CONNECTION WINDOWID XAUTHORITY"
|
set -g update-environment "DISPLAY SSH_ASKPASS SSH_AGENT_PID SSH_CONNECTION WINDOWID XAUTHORITY"
|
||||||
set -g mode-keys "vi"
|
set -g mode-keys "vi"
|
||||||
|
@ -26,22 +24,18 @@ set -g set-titles-string "[#h:#S] #W"
|
||||||
set -g escape-time "0"
|
set -g escape-time "0"
|
||||||
set -g history-limit "10000"
|
set -g history-limit "10000"
|
||||||
set -g default-terminal "tmux-256color"
|
set -g default-terminal "tmux-256color"
|
||||||
set -g status "on"
|
set -g message-style "bg=colour11,fg=colour15"
|
||||||
|
set -g message-command-style "bg=colour1,fg=colour15"
|
||||||
|
set -g pane-border-status "off"
|
||||||
|
set -g pane-border-style "fg=colour11"
|
||||||
|
set -g pane-active-border-style "fg=colour4"
|
||||||
|
set -g status on
|
||||||
|
set -g status-style "bg=colour7,fg=colour11"
|
||||||
|
set -g status-format[0] "#[fg=colour15,bg=colour4] #h #[fg=colour15,bg=colour14] #S #[default]#{W: #I:#W ,#[reverse] #I:#W #[default]}#[align=right]#[fg=colour15,bg=colour14] %a %e #[fg=colour7,bg=colour11] %k:%M "
|
||||||
set -g status-interval 2
|
set -g status-interval 2
|
||||||
set -g status-position "bottom"
|
set -g status-position "bottom"
|
||||||
set -g status-justify "left"
|
set -g status-justify "left"
|
||||||
set -g status-left-length "100"
|
set -g status-left-length "100"
|
||||||
set -g status-right-length "100"
|
set -g status-right-length "100"
|
||||||
set -g pane-border-status "off"
|
|
||||||
set -g automatic-rename on
|
set -g automatic-rename on
|
||||||
set -g automatic-rename-format "#T"
|
set -g automatic-rename-format "#T"
|
||||||
set -g pane-border-style "fg=colour8"
|
|
||||||
set -g pane-active-border-style "fg=colour4"
|
|
||||||
set -g status-style "bg=colour7"
|
|
||||||
set -g message-style "bg=colour11,fg=colour15"
|
|
||||||
set -g message-command-style "bg=colour1,fg=colour15"
|
|
||||||
set -g window-status-style "bg=colour7,fg=colour11"
|
|
||||||
set -g window-status-format " #I:#W "
|
|
||||||
set -g window-status-current-format "#[reverse] #I:#W #[default]"
|
|
||||||
set -g status-left "#[fg=colour15,bg=colour4] #h #[fg=colour15,bg=colour14] #S #[default] "
|
|
||||||
set -g status-right " #[fg=colour15,bg=colour14] %a %e #[fg=colour7,bg=colour11] %k:%M "
|
|
||||||
|
|
Loading…
Reference in a new issue