From 5c55b3ee643013e5a3ab4b924c571eef22170276 Mon Sep 17 00:00:00 2001 From: Carlos Aldana Date: Wed, 21 Feb 2024 09:15:33 -0800 Subject: [PATCH] adds tmux conf --- .tmux.conf | 15 +++++++++++++++ ubuntu-dev.sh | 2 ++ 2 files changed, 17 insertions(+) create mode 100644 .tmux.conf diff --git a/.tmux.conf b/.tmux.conf new file mode 100644 index 0000000..a397e87 --- /dev/null +++ b/.tmux.conf @@ -0,0 +1,15 @@ +unbind r +bind r source-file ~/.tmux.conf \; display "Reloaded!" + +set -g prefix C-t +set -g mouse on + +bind-key m select-pane -L +bind-key n select-pane -D +bind-key e select-pane -U +bind-key i select-pane -R + +set-option -g status-position top +set -g default-terminal "tmux-256color" +set -ag terminal-overrides ",xterm-256color:RGB" + diff --git a/ubuntu-dev.sh b/ubuntu-dev.sh index e323f61..474e4e7 100644 --- a/ubuntu-dev.sh +++ b/ubuntu-dev.sh @@ -1,6 +1,8 @@ sudo apt install zig -y snap install nvim --classic +cp .tmux.conf ~ + ###### Node curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash wget -qO- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash