Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #basic settings
- set -g default-terminal "tmux-256color"
- set -g -a terminal-overrides ',*:Ss=\E[%p1%d q:Se=\E[2 q'
- set -sg escape-time 0
- #keybinds
- bind % split-window -h -c "#{pane_current_path}"
- bind '"' split-window -v -c "#{pane_current_path}"
- #tab like window switching
- bind -n C-S-Down new-window
- bind -n S-Left prev
- bind -n S-Right next
- bind -n C-S-Left swap-window -t -1
- bind -n C-S-Right swap-window -t +1
- # Styling
- set -g status-position top
- set -g status-justify right
- set -g status-style "bg=Colour10 fg=black"
- set -g window-style ""
- set -g window-active-style ""
- set -g status-left "#[bg=Colour10] #[bg=Colour4] #{pane_current_command} "
- set -g status-left-style "bold"
- set -g status-left-length 15
- set -g status-right ""
- set -g status-right-style ""
- set -g status-right-length 10
- set -g window-status-current-style "bg=Colour10 bold"
- set -g window-status-style ""
- set -g window-status-format " #{?#{==:#{window_name},fish},#{b:pane_current_path},#W}#{?window_zoomed_flag,.Z,} "
- set -g window-status-current-format " #{?#{==:#{window_name},fish},#{b:pane_current_path},#W}#{?window_zoomed_flag,.Z,} "
- set -g window-status-separator ""
- set -g pane-active-border-style "fg=Colour2"
- set -g pane-border-style "fg=Colour0"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement