Update tmux config
This commit is contained in:
parent
9a3cff1cfa
commit
ca530f156e
|
@ -15,14 +15,14 @@ bind - split-window -v
|
||||||
unbind '"'
|
unbind '"'
|
||||||
unbind %
|
unbind %
|
||||||
|
|
||||||
# switch panes using Alt-arrow without prefix
|
# switch panes using vi keys
|
||||||
bind -n M-Left select-pane -L
|
bind h select-pane -L
|
||||||
bind -n M-Right select-pane -R
|
bind l select-pane -R
|
||||||
bind -n M-Up select-pane -U
|
bind k select-pane -U
|
||||||
bind -n M-Down select-pane -D
|
bind j select-pane -D
|
||||||
|
|
||||||
# don't rename windows automatically
|
# don't rename windows automatically
|
||||||
set-option -g allow-rename off
|
#set-option -g allow-rename off
|
||||||
|
|
||||||
# reload config file (change file location to your the tmux.conf you want to use)
|
# reload config file (change file location to your the tmux.conf you want to use)
|
||||||
bind r source-file ~/.tmux.conf
|
bind r source-file ~/.tmux.conf
|
||||||
|
@ -58,22 +58,19 @@ set -g pane-active-border-style 'bg=colour0 fg=colour9'
|
||||||
set -g status-position bottom
|
set -g status-position bottom
|
||||||
set -g status-justify left
|
set -g status-justify left
|
||||||
set -g status-style 'bg=colour234 fg=colour255'
|
set -g status-style 'bg=colour234 fg=colour255'
|
||||||
set -g status-left '#[fg=colour255,bg=colour234] '
|
set -g status-left '#[fg=colour255,bg=colour234] '
|
||||||
set -g status-right '#[fg=colour255,bg=colour27] %d/%m %H:%M '
|
set -g status-right '#[bg=colour234,fg=colour27]#[fg=colour255,bg=colour27] %d/%m %H:%M '
|
||||||
set -g status-right-length 50
|
set -g status-right-length 50
|
||||||
set -g status-left-length 20
|
set -g status-left-length 20
|
||||||
|
|
||||||
setw -g window-status-current-format '#[bg=colour27,fg=colour184] #I#[fg=colour255]-#W#F '
|
setw -g window-status-current-format '#[fg=colour234,bg=colour27]#[bg=colour27,fg=colour184] #I#[fg=colour255]-#W #[bg=colour234,fg=colour27]'
|
||||||
|
|
||||||
setw -g window-status-format '#[bg=colour237,fg=colour184] #I#[fg=colour255]-#W#F '
|
setw -g window-status-format '#[fg=colour234,bg=colour237]#[bg=colour237,fg=colour184] #I#[fg=colour255]-#W #[bg=colour234,fg=colour237]'
|
||||||
|
|
||||||
setw -g window-status-bell-style 'fg=colour255 bg=colour1 bold'
|
setw -g window-status-bell-style 'fg=colour255 bg=colour1 bold'
|
||||||
|
|
||||||
# messages
|
# messages
|
||||||
set -g message-style 'fg=colour232 bg=colour12 bold'
|
set -g message-style 'bg=colour27 fg=white'
|
||||||
|
|
||||||
|
# set default shell
|
||||||
|
|
||||||
|
|
||||||
# SET DEFAULT SHELL:
|
|
||||||
set-option -g default-shell $SHELL
|
set-option -g default-shell $SHELL
|
||||||
|
|
Loading…
Reference in New Issue