Skip to content

Instantly share code, notes, and snippets.

@heapwolf
Created December 4, 2021 19:19
Show Gist options
  • Save heapwolf/b8b6d28d5522c9aa216eb0f4d6453122 to your computer and use it in GitHub Desktop.
Save heapwolf/b8b6d28d5522c9aa216eb0f4d6453122 to your computer and use it in GitHub Desktop.
tmux conf
set -g default-shell /bin/zsh
set -g prefix C-a
unbind-key C-b
set -g default-terminal "screen-256color"
set -ga terminal-overrides ",*256col*:Tc"
#
# New splits should start with the same cwd
#
bind '"' split-window -c "#{pane_current_path}"
bind % split-window -h -c "#{pane_current_path}"
#
# Re-source
#
bind R source-file ~/.tmux.conf \; display-message " OK! "
bind H popup -E -w 80% -h 80% "htop"
bind T popup -E -d '#{pane_current_path}' -w 80% -h 80% 'tig'
bind G popup -E -d '#{pane_current_path}' -w 80% -h 80% 'git diff'
#
# Right and left
#
bind -n S-Right next-window
bind -n S-Left previous-window
# bind -n S-Down new-window -c "$DIR"
set -g default-terminal "screen-256color"
#
# Start numbering windows at 1
#
set -g base-index 1
set -g history-limit 20000
#
# Mouse
#
set -g mouse on
#
# Set window notifications
#
setw -g monitor-activity off
set -g visual-activity off
#
# Window and border styles
#
set-option -g pane-active-border-style fg=colour232
set-option -g pane-border-style fg=colour232
set -g status on
set -g status-style fg=white,bg=colour232
setw -g window-status-format "#[fg=colour238] "
setw -g window-status-current-format "#[fg=colour238] "
setw -g window-status-activity-style 'fg=colour220,blink'
setw -g window-status-bell-style 'fg=colour220,blink'
set -g status-left ''
set -g status-right '#[fg=colour238,bg=colour232]  #(cd #{pane_current_path}; git rev-parse --abbrev-ref HEAD) #[fg=colour4] #(basename #{pane_current_path}) #[fg=colour238] %d-%m  %H:%M '
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment