86 lines
2.7 KiB
Bash
86 lines
2.7 KiB
Bash
#################################
|
|
# _ #
|
|
# | | #
|
|
# | |_ _ __ ___ _ ___ __ #
|
|
# | __| '_ ` _ \| | | \ \/ / #
|
|
# | |_| | | | | | |_| |> < #
|
|
# \__|_| |_| |_|\__,_/_/\_\ #
|
|
# #
|
|
#################################
|
|
|
|
#################################
|
|
# Basic Options #
|
|
#################################
|
|
|
|
set -g prefix ^a
|
|
set -g status-keys vi
|
|
setw -g mode-keys vi
|
|
|
|
# Shut up!
|
|
set -g bell-action none
|
|
set -g bell-on-alert off
|
|
set quiet off
|
|
|
|
# Fix terminal name issues
|
|
set -s escape-time 1
|
|
|
|
#################################
|
|
# Key bindings #
|
|
#################################
|
|
|
|
# Reload configuration
|
|
bind r source-file ~/.tmux.conf
|
|
|
|
# Panel splites and selection
|
|
unbind %
|
|
bind g split-window -h
|
|
unbind '"'
|
|
bind v split-window -v
|
|
unbind o
|
|
bind-key -n C-g last-window
|
|
bind-key -n C-b previous-window
|
|
bind-key -n C-n next-window
|
|
bind n next-window
|
|
bind b previous-window
|
|
|
|
# Move around panes with hjkl, as one would in vim
|
|
bind h select-pane -L
|
|
bind j select-pane -D
|
|
bind k select-pane -U
|
|
bind l select-pane -R
|
|
|
|
# Resize
|
|
bind H resize-pane -L 5
|
|
bind J resize-pane -D 5
|
|
bind K resize-pane -U 5
|
|
bind L resize-pane -R 5
|
|
|
|
# Kill
|
|
bind q kill-window
|
|
bind Q kill-session
|
|
|
|
#################################
|
|
# Statusline #
|
|
#################################
|
|
|
|
set -g status-justify "left"
|
|
set -g status "on"
|
|
set -g status-left-style "none"
|
|
set -g message-command-style "fg=colour144,bg=colour237"
|
|
set -g status-right-style "none"
|
|
set -g pane-active-border-style "fg=colour27"
|
|
#set -g status-utf8 "on"
|
|
set -g status-style "bg=colour234,none"
|
|
set -g message-style "fg=colour144,bg=colour237"
|
|
set -g pane-border-style "fg=colour237"
|
|
set -g status-right-length "100"
|
|
set -g status-left-length "100"
|
|
setw -g window-status-activity-attr "none"
|
|
setw -g window-status-activity-style "fg=colour27,bg=colour234,none"
|
|
setw -g window-status-separator ""
|
|
setw -g window-status-style "fg=colour39,bg=colour234,none"
|
|
set -g status-left "#[fg=colour15,bg=colour27] #S #[fg=colour27,bg=colour234,nobold,nounderscore,noitalics]"
|
|
set -g status-right "#[fg=colour237,bg=colour234,nobold,nounderscore,noitalics]#[fg=colour144,bg=colour237] %d.%m.%Y %H:%M #[fg=colour27,bg=colour237,nobold,nounderscore,noitalics]#[fg=colour15,bg=colour27] #h "
|
|
setw -g window-status-format "#[fg=colour39,bg=colour234] #I #[fg=colour39,bg=colour234] #W "
|
|
setw -g window-status-current-format "#[fg=colour234,bg=colour237,nobold,nounderscore,noitalics]#[fg=colour144,bg=colour237] #I #[fg=colour144,bg=colour237] #{pane_current_path} #[fg=colour144,bg=colour237] #W #[fg=colour237,bg=colour234,nobold,nounderscore,noitalics]"
|