dotfiles

<-- duh.
git clone https://hhvn.uk/dotfiles
git clone git://hhvn.uk/dotfiles
Log | Files | Refs | Submodules | LICENSE

config (1582B)


      1 # vim: set syntax=tmux :
      2 
      3 unbind C-b
      4 set-option -g prefix C-a
      5 bind-key C-a send-prefix
      6 
      7 set-option -g default-terminal "xterm-256color"
      8 
      9 bind z split-window -h
     10 bind Z split-window -v
     11 unbind '"'
     12 unbind %
     13 
     14 bind r source-file ~/.tmux.conf
     15 
     16 bind-key h select-pane -L
     17 bind-key j select-pane -D
     18 bind-key k select-pane -U
     19 bind-key l select-pane -R
     20 
     21 bind-key -r C-h resize-pane -L
     22 bind-key -r C-j resize-pane -D
     23 bind-key -r C-k resize-pane -U
     24 bind-key -r C-l resize-pane -R
     25 
     26 set-option -g status-justify right
     27 set-option -g status-bg black # colour213 # pink
     28 set-option -g status-fg cyan
     29 set-option -g status-interval 5
     30 set-option -g status-left-length 30
     31 set-option -g visual-activity on
     32 set-option -g set-titles on
     33 set-option -g set-titles-string '#H:#S.#I.#P #W #T'
     34 
     35 #  modes
     36 setw -g clock-mode-colour colour5
     37 setw -g mode-style 'fg=colour1 bg=colour18 bold'
     38 
     39 # panes
     40 set -g pane-border-style 'fg=colour1'
     41 set -g pane-active-border-style 'fg=colour10'
     42 
     43 # statusbar
     44 set -g status-position bottom
     45 set -g status-justify centre
     46 set -g status-style 'bg=colour0 fg=colour11'
     47 set -g status-left '[#(whoami)@#H]'
     48 set -g status-right '#[bg=colour5,fg=colour10] %d/%m/%y #[bg=colour10,fg=colour5] %H:%M:%S '
     49 set -g status-right-length 45
     50 set -g status-left-length 45
     51 
     52 setw -g window-status-current-style 'fg=colour7 bg=colour3 bold'
     53 setw -g window-status-current-format ' #[fg=colour255]#W '
     54 setw -g window-status-style 'fg=colour7 bg=colour2 dim'
     55 setw -g window-status-format ' [#I#[fg=colour249]]#[fg=colour255]#W#[fg=colour249] '
     56 
     57 # messages
     58 set -g message-style 'fg=colour232 bg=colour7 bold'