Skip to content
Snippets Groups Projects
Commit 146e4859 authored by jkerdreu's avatar jkerdreu
Browse files

Added missing tmux.conf


git-svn-id: https://redmine.imt-atlantique.fr/svn/xaal/code/Python/trunk@2183 b32b6428-25c9-4566-ad07-03861ab6144f
parent 3696e1c9
No related branches found
No related tags found
No related merge requests found
set -g default-terminal "screen-256color" # colors!
# interface
#------------
# pane
#------------
set -g pane-border-fg black
set -g pane-active-border-fg blue
set -g pane-border-status top
#------------
# tabs
#------------
setw -g window-status-format "#[fg=white]#[bg=blue]#I #[bg=blue]#[fg=white]#W "
setw -g window-status-current-format "#[bg=red]#[fg=white,bold][#I #[fg=white,bold]#[bg=red]#W]"
#------------
# status bar
#------------
set-option -g status-position bottom
set -g status-fg white
set -g status-bg blue
#set -g status-left ''
set -g status-right-length 60
#set -g status-right ' ☢ #(cat /proc/loadavg|cut -d" " -f 1) | ☪ #(hostname) | %a %m-%d %H:%M'
#set -g status-right ' ☢ #(ip addr show dev eth0|grep inet|cut -d" " -f 6)'
set -g status-right '#(hostname)'
set -g status-left ' xAAL-docker >> '
set -g status-left-length 70
#-------
# Mouse
#-------
set -g mouse on
bind-key m set-option -g mouse on \; display 'Mouse: ON'
bind-key M set-option -g mouse off \; display 'Mouse: OFF'
#-------------------
# window navigation
#-------------------
unbind n
unbind p
bind -r C-p previous-window # select previous window
bind -r C-n next-window # select next window
bind Tab choose-window # move to last active window
bind -r C-s setw synchronize-panes \; display 'Switching synchronize'
bind -r k kill-pane
bind -r § source ~/.tmux.conf \; display 'Loaded config file'
# enable activity alerts
# setw -g monitor-activity on
# set -g visual-activity on
#set -g status-interval 300
setw -g xterm-keys on
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment