Skip to content

Instantly share code, notes, and snippets.

@khu-md
Forked from william8th/.tmux.conf
Created September 8, 2020 14:30
Show Gist options
  • Select an option

  • Save khu-md/3d5300a45c18a48789badb4eb1d72a7e to your computer and use it in GitHub Desktop.

Select an option

Save khu-md/3d5300a45c18a48789badb4eb1d72a7e to your computer and use it in GitHub Desktop.
Tmux open new pane in same directory
set -g prefix C-a
unbind-key C-b
bind-key C-a send-prefix
bind c new-window -c "#{pane_current_path}"
bind '"' split-window -c "#{pane_current_path}"
bind % split-window -h -c "#{pane_current_path}"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment