Skip to content

Instantly share code, notes, and snippets.

@buddylindsey
Created October 4, 2019 18:45
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 buddylindsey/482591327dfe367735af42673527440a to your computer and use it in GitHub Desktop.
Save buddylindsey/482591327dfe367735af42673527440a to your computer and use it in GitHub Desktop.
# List of plugins
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-yank'
set -g @plugin 'tmux-plugins/tmux-resurrect'
set -g @plugin 'tmux-plugins/tmux-continuum'
set -g @plugin 'tmux-plugins/tmux-prefix-highlight'
set-option -g default-shell /bin/zsh
# so you don't end up with window numbers like: 0 1 4 5 6
set-option -g renumber-windows on
# make new panes and windows use the pwd
bind | split-window -h -c "#{pane_current_path}"
bind - split-window -v -c "#{pane_current_path}"
#set -g status-utf8 on
# visual notification of activity in other windows
setw -g monitor-activity on
set -g visual-activity on
# make iterm window/tab name reflect tmux session
set-option -g set-titles on
set-option -g set-titles-string '#S'
#set -g default-terminal "tmux-256color"
#set -ga terminal-overrides ",*256col*:Tc"
set -g base-index 1
set -g history-limit 50000
set -g @continuum-restore 'on'
set -g mouse 'on'
set -g automatic-rename 'on'
set -g clock-mode-style '24'
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
run -b '~/.tmux/plugins/tpm/tpm'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment