#Change prefix from 'C-b' to 'C-a' unbind C-b set-option -g prefix C-a bind-key C-a send-prefix #Reload tmux.conf file bind r source-file /c/Users/Y9785/.tmux.conf #Split panes using | and - bind | split-window -h bind - split-window -v unbind '"' unbind % #Switch panes using Alt-Arrow, no prefix needed bind -n M-Left select-pane -L bind -n M-Right select-pane -R bind -n M-Up select-pane -U bind -n M-Down select-pane -D #Shift-arrow to switch windows bind -n S-Left previous-window bind -n S-Right next-window #Mouse-mode settings set -g mouse on #Rename tab to directory set-option -g status-interval 5 set-option -g automatic-rename on set-option -g automatic-rename-format '#(basename "#{pane_current_path}")' ###################### ### DESIGN CHANGES ### ###################### ### BEGIN STATUS BAR #Set style for the statusbar background set -g status-style bg=cyan #Style/format for all tabs (current can be overwritter) setw -g window-status-style bg=cyan setw -g window-status-format '#[fg=black][#I#[fg=black]:#[fg=black]#W#[fg=black]]' #Style for the current tab setw -g window-status-current-style bg=blue setw -g window-status-current-format '#[fg=cyan]{#I#[fg=cyan]:#[fg=cyan]#W#[fg=cyan]}' #Remove session name from left status set -g status-left '' #Set right status to show date and time set -g status-right '#[fg=colour233,bg=cyan,bold] %I:%M:%S %p ' set -g status-right-length 50 ### END STATUS BAR ########################### ### END DESIGN CHANGES ### ###########################