Last active
February 4, 2019 14:05
-
-
Save jkaldenbach/8bd9d4f28fd359e7ad5d6a71f1647188 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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