# command setting unbind C-b set -g prefix C-a bind C-a send-prefix # friendly indexing set -g base-index 1 setw -g pane-base-index 1 set -g renumber-windows on # mouse suppot set -g mouse on # resizing # Splits with same cwd bind | split-window -h -c "#{pane_current_path}" bind - split-window -v -c "#{pane_current_path}" # Vim-style navigation bind h select-pane -L bind j select-pane -D bind k select-pane -U bind l select-pane -R # Pane resizing bind -r H resize-pane -L 5 bind -r J resize-pane -D 5 bind -r K resize-pane -U 5 bind -r L resize-pane -R 5 set -g history-limit 10000 # Pane borders set -g pane-border-style fg=colour238 set -g pane-active-border-style "fg=colour46,bg=colour235" set -g pane-border-lines single set -g pane-border-indicators off # Basic colors set -g status-bg colour235 set -g status-fg white # Window list styles set -g window-status-current-style bg=green,fg=black set -g window-status-style bg=black,fg=white run "~/.tmux/plugins/tpm/tpm" set -g @plugin 'erikw/tmux-powerline'