From 6f427f0c5be8aa443d96ef89e3a99c7c41801906 Mon Sep 17 00:00:00 2001 From: Adam Goldsmith Date: Sat, 18 Mar 2023 23:07:00 -0400 Subject: [PATCH] Add some basic tmux config --- .tmux.conf | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 .tmux.conf diff --git a/.tmux.conf b/.tmux.conf new file mode 100644 index 0000000..2e4a0ee --- /dev/null +++ b/.tmux.conf @@ -0,0 +1,8 @@ +# set prefix to C-z +set -g prefix C-z +unbind C-b +bind C-z send-prefix + +# open new panes in current directory +bind % split-window -h -c "#{pane_current_path}" +bind '"' split-window -v -c "#{pane_current_path}"