add new tmux config
This commit is contained in:
parent
3170e75bbe
commit
81a1af4c74
1 changed files with 15 additions and 18 deletions
|
@ -1,29 +1,23 @@
|
|||
# https://github.com/seebi/tmux-colors-solarized/blob/master/tmuxcolors-256.conf
|
||||
set-option -g status-bg colour235 #base02
|
||||
set-option -g status-fg colour136 #yellow
|
||||
set-option -g status-attr default
|
||||
set-option -g status-style bg=colour235,fg=colour136
|
||||
|
||||
# set window split
|
||||
bind-key v split-window -h
|
||||
bind-key b split-window
|
||||
|
||||
# default window title colors
|
||||
set-window-option -g window-status-fg colour39 #base0
|
||||
set-window-option -g window-status-bg default
|
||||
set-window-option -g window-status-attr dim
|
||||
set-window-option -g window-status-style fg=colour39,bg=default,dim
|
||||
|
||||
# active window title colors
|
||||
set-window-option -g window-status-current-fg colour235 #orange
|
||||
set-window-option -g window-status-current-bg colour113
|
||||
set-window-option -g window-status-current-attr bright
|
||||
set-window-option -g window-status-current-style fg=colour235,bg=colour113,bright
|
||||
|
||||
# pane border
|
||||
set-option -g pane-border-fg colour235 #base02
|
||||
set-option -g pane-active-border-fg colour240 #base01
|
||||
set-option -g pane-border-style fg=colour235 #base02
|
||||
set-option -g pane-active-border-style fg=colour240 #base01
|
||||
|
||||
# message text
|
||||
set-option -g message-bg colour235 #base02
|
||||
set-option -g message-fg colour166 #orange
|
||||
set-option -g message-style bg=colour235 #base02
|
||||
set-option -g message-style fg=colour166 #orange
|
||||
|
||||
# pane number display
|
||||
set-option -g display-panes-active-colour colour33 #blue
|
||||
|
@ -38,7 +32,7 @@ set -g status-left-length 14
|
|||
set -g status-right-length 140
|
||||
#set -g status-left '#[default]〘 '
|
||||
set -g status-left '#[fg=green,bright]#(uname -r | cut -c 1-8)#[default]〘'
|
||||
set -g status-right "〙#[fg=red,bg=default]⇑#(uptime -p |sed 's/\ week/w/; s/\ days/d/; s/\ day/d/; s/\ hours/h/; s/\ minutes/m/; s/\ minute/m/; s/,//g; s/up//') #[fg=green,bg=default]⎋ #(cat /proc/loadavg | awk '{print $1,$2,$3}') #[fg=blue]⌚ %Y-%m-%d #[fg=white,bg=default]⌚ %H:%M #[fg=green]⚼ #H"
|
||||
set -g status-right "〙🔋 #(upower -i /org/freedesktop/UPower/devices/battery_BAT1 | grep time | awk '{print $4, $5}' | sed 's/hours/h/; s/minutes/m/; s/,/\./') #[fg=red,bg=default]⇑#(uptime -p |sed 's/\ week/w/; s/\ days/d/; s/\ day/d/; s/\ hours/h/; s/\ minutes/m/; s/\ minute/m/; s/,//g; s/up//') #[fg=green,bg=default]⎋ #(cat /proc/loadavg | awk '{print $1,$2,$3}') #[fg=blue]⌚ %Y-%m-%d #[fg=white,bg=default]⌚ %H:%M #[fg=green]⚼ #H"
|
||||
|
||||
# C-b is not acceptable -- Vim uses it
|
||||
set-option -g prefix C-a
|
||||
|
@ -65,8 +59,11 @@ set -g visual-activity on
|
|||
|
||||
# Vi copypaste mode
|
||||
set-window-option -g mode-keys vi
|
||||
bind-key -t vi-copy 'v' begin-selection
|
||||
bind-key -t vi-copy 'y' copy-selection
|
||||
#bind-key -t vi-copy 'v' begin-selection
|
||||
#bind-key -t vi-copy 'y' copy-selection
|
||||
|
||||
#/home/sophie/.tmux.conf:68: usage: bind-key [-cnr] [-T key-table] key command [arguments] [0/0]
|
||||
|
||||
|
||||
# hjkl pane traversal
|
||||
bind h select-pane -L
|
||||
|
@ -86,10 +83,10 @@ bind r source-file ~/.tmux.conf \; display-message "Config reloaded..."
|
|||
set-window-option -g automatic-rename
|
||||
|
||||
# color
|
||||
set -g default-terminal "screen-256color"
|
||||
set -g default-terminal "tmux-256color"
|
||||
|
||||
# status bar
|
||||
set-option -g status-utf8 on
|
||||
#set-option -g status-utf8 on
|
||||
|
||||
# https://github.com/edkolev/dots/blob/master/tmux.conf
|
||||
# Updates for tmux 1.9's current pane splitting paths.
|
||||
|
|
Loading…
Reference in a new issue