Skip to content

Instantly share code, notes, and snippets.

@atilaromero
Forked from william8th/.tmux.conf
Created August 21, 2020 18:27
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 atilaromero/67fca4bf1294bb6275d51f686bcb6681 to your computer and use it in GitHub Desktop.
Save atilaromero/67fca4bf1294bb6275d51f686bcb6681 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