aboutsummaryrefslogblamecommitdiff
path: root/.tmux.conf
blob: 3cd09260dbf6026810e5a65935ad48817848bc22 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11










                            

                    












                                               








                                

















                                                                                                                                                         


                                         
setw -g automatic-rename
set-option -g prefix C-t

# screen like settings
bind C-n next-window
bind C-p previous-window
bind C-d detach
bind C-k confirm kill-window
bind k confirm kill-window
bind K confirm kill-server
bind C-K confirm kill-server
bind t send-prefix
bind C-t send-prefix

# Enable the mouse
setw -g mode-mouse on
set -g mouse-select-pane on
set -g mouse-resize-pane on
set -g mouse-select-window on
set -g set-titles on
set -g base-index 0

# Set window titles
set-option -g set-titles on
# [session:window-name host] command
set-option -g set-titles-string '[#S:#I #H] #W'

# Resize when possible
setw -g aggressive-resize on

# emacs key bindings
set -g mode-keys emacs
set -g status-keys emacs

# active window colour in status
# set -g window-status-current-bg white
# set -g window-status-current-fg magenta
# set -g window-status-bell-bg red
# set -g window-status-bell-fg yellow


# Powerline:
set-option -g status on
set-option -g status-interval 2
set-option -g status-utf8 on
set-option -g status-justify "centre"
set-option -g status-left-length 100
set-option -g status-right-length 100
set-option -g status-left "#(~/.tmux/powerline/powerline.sh left)"
set-option -g status-right "#(~/.tmux/powerline/powerline.sh right)"
set-option -g status-bg colour235
set-option -g status-fg colour254
set-window-option -g window-status-current-format "#[fg=colour235, bg=colour27]▶#[fg=colour255, bg=colour27] #I ❯ #W #[fg=colour27, bg=colour235]▶"

# Use 256 colours
set -g default-terminal "screen-256color"