From cc91ea4f7d636687770e584c2f89bf88c4d4581c Mon Sep 17 00:00:00 2001 From: Hans Goor Date: Mon, 17 Apr 2023 21:00:34 +0200 Subject: [PATCH] Updated tmux config --- ssh/.ssh/config | 4 ++++ tmux/.tmux.conf | 8 ++++++-- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/ssh/.ssh/config b/ssh/.ssh/config index d2db1ed..6f15d57 100644 --- a/ssh/.ssh/config +++ b/ssh/.ssh/config @@ -127,3 +127,7 @@ Host hella-pi HostName sirenia.student.utwente.nl Port 15623 User eyedevelop + +Host ronan-vps + HostName 185.48.119.14 + User eyedevelop diff --git a/tmux/.tmux.conf b/tmux/.tmux.conf index d77ea88..1b59405 100644 --- a/tmux/.tmux.conf +++ b/tmux/.tmux.conf @@ -1,10 +1,14 @@ set -g mouse on +# Open new windows with the same directory +unbind c +bind c new-window -c "#{pane_current_path}" + # Binds -bind | split-window -h -bind - split-window -v unbind '"' unbind % +bind | split-window -h -c "#{pane_current_path}" +bind - split-window -v "#{pane_current_path}" # Alt-arrow switching bind -n M-Left select-pane -L