This is the first push to this repo with my dotfiles
[dotfilesold/.git] / .tmux.conf
1 set-option -g prefix C-a
2 unbind-key C-b
3 bind-key C-a send-prefix
4 bind r source-file ~/.tmux.conf  \; display " ~/.tmux.conf Reloaded!"
5 #### Barra inferior Powerline
6 set-option -g status on
7 set-option -g status-interval 2
8 set-option -g status-justify 'left'
9 #set-option -g status-fg colour231
10 set-option -g status-bg colour31
11 set-option -g status-right-length 90
12 set-option -g status-right "#(~/.tmux-powerline/tmux-powerline/powerline.sh right)"
13 set-option -g status-left-length 30
14 set -g status-left '#[fg=colour234,bg=colour31] #[fg=colour16,bg=colour254,bold] #(whoami) #[fg=colour254,bg=colour234,nobold] '
15 set -g window-status-current-format '#[fg=colour234,bg=colour31] #[fg=colour117,bg=colour31] #I#[fg=colour231,bold] #W#[fg=colour231,bold] #(uptime | cut -f 4-5 -d " " | cut -f 1 -d ",") hrs#[fg=colour57,bold]'
16
17