Skip to content

Instantly share code, notes, and snippets.

@atilaromero
atilaromero / .tmux.conf
Created August 21, 2020 18:27 — forked from william8th/.tmux.conf
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}"