Skip to content

Instantly share code, notes, and snippets.

@ducklin5
Last active September 7, 2020 07:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ducklin5/fd6efcbaa85d72cdce04b1955abbb008 to your computer and use it in GitHub Desktop.
Save ducklin5/fd6efcbaa85d72cdce04b1955abbb008 to your computer and use it in GitHub Desktop.
set -g default-terminal "screen-256color"
# List of plugins
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
set -g @plugin 'tmux-plugins/tmux-resurrect'
set -g @plugin 'jimeh/tmux-themepack'
run '~/.tmux/plugins/tpm/tpm'
set -g @themepack 'basic'
set -g mouse on
set-option -g status on
set-option -g status-interval 2
set-option -g status-justify "centre"
set-option -g status-left-length 60
set-option -g status-right-length 90
set-option -g pane-active-border-style "bg=default"
set-option -ag pane-active-border-style "fg=colour208"
bind '"' split-window -c "#{pane_current_path}"
bind % split-window -h -c "#{pane_current_path}"
bind c new-window -c "#{pane_current_path}"
#bind -n End send-key C-e
#bind -n Home send-key C-a
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment