update tmux and vim
This commit is contained in:
parent
fa71de6291
commit
ebd4bc0bad
2 changed files with 56 additions and 14 deletions
27
.tmux.conf
27
.tmux.conf
|
|
@ -14,6 +14,7 @@ bind-key l select-pane -R
|
|||
bind-key C-n next-window
|
||||
bind-key C-p previous-window
|
||||
set -g set-titles off
|
||||
set -g mouse on
|
||||
set -g default-terminal xterm-256color
|
||||
setw -g mode-keys vi
|
||||
new -d
|
||||
|
|
@ -30,17 +31,31 @@ bind | split-window -h
|
|||
bind - split-window -v
|
||||
|
||||
# Status Bar
|
||||
set -g status-bg black
|
||||
#set -g status-bg black
|
||||
set -g status-fg white
|
||||
set -g status-interval 1
|
||||
set -g status-left '#[fg=green]#H#[default]'
|
||||
set -g status-left-length 20
|
||||
set -g status-right '#[fg=green]#(~/src/tpom/tpom) #[fg=cyan,bold]%Y-%m-%d %H:%M:%S#[default]'
|
||||
#set -g status-left '#[fg=green]#H#[default]'
|
||||
#set -g status-left-length 20
|
||||
#set -g status-right '#[fg=green]#(~/src/tpom/tpom) #[fg=cyan,bold]%Y-%m-%d %H:%M:%S#[default]'
|
||||
set -g status-justify centre # center align window list
|
||||
set -g status-fg white
|
||||
set -g status-bg default
|
||||
|
||||
# default window title colors
|
||||
set-window-option -g window-status-fg white
|
||||
set-window-option -g window-status-bg default
|
||||
set-window-option -g window-status-attr dim
|
||||
|
||||
# active window title colors
|
||||
set-window-option -g window-status-current-fg cyan
|
||||
set-window-option -g window-status-current-bg default
|
||||
set-window-option -g window-status-current-attr bright
|
||||
set -g status-left '#[fg=green][ #H ][ '
|
||||
set -g status-right '#[fg=green]][ #[fg=blue]%Y-%m-%d #[fg=white]%I:%M #[fg=green]]'
|
||||
|
||||
# Notifying if other windows has activities
|
||||
setw -g monitor-activity on
|
||||
set -g visual-activity on
|
||||
|
||||
# Highlighting the active window in status bar
|
||||
setw -g window-status-current-bg red
|
||||
|
||||
#setw -g window-status-current-bg red
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue