Skip to content

Instantly share code, notes, and snippets.

@jkaldenbach
Last active February 4, 2019 14:05
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 jkaldenbach/8bd9d4f28fd359e7ad5d6a71f1647188 to your computer and use it in GitHub Desktop.
Save jkaldenbach/8bd9d4f28fd359e7ad5d6a71f1647188 to your computer and use it in GitHub Desktop.
# these were here before
# if "[[ ${TERM} =~ 256color || ${TERM} == fbterm ]]" 'set -g default-terminal screen-256color'
# set -s escape-time 0
set -sg escape-time 10
setw -g mouse on
set-option -g default-terminal "screen-256color"
set-option -ga terminal-overrides ",xterm-256color:Tc"
set-option -g history-limit 50000
# open new windows/panes in the current directory
bind '"' split-window -c "#{pane_current_path}"
bind % split-window -h -c "#{pane_current_path}"
bind c new-window -c "#{pane_current_path}"
# vim-like pane navigation
bind h select-pane -L
bind j select-pane -D
bind k select-pane -U
bind l select-pane -R
run-shell ~/dl/tmux-resurrect/resurrect.tmux
run-shell ~/dl/tmux-continuum/continuum.tmux
set -g @resurrect-strategy-nvim 'session'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment