From 0d90f23ce53ee939f4c7bb7dc9b6f5ca99b41603 Mon Sep 17 00:00:00 2001 From: Constantin Simonis Date: Sat, 14 Jun 2025 20:58:09 +0200 Subject: [PATCH] add tmux --- .config/.gitignore | 15 ++++++++------- .config/tmux/tmux.conf | 15 +++++++++++++++ .gitignore | 17 +---------------- .stow-local-ignore | 7 +++++++ .tmux.conf | 1 + 5 files changed, 32 insertions(+), 23 deletions(-) create mode 100644 .config/tmux/tmux.conf create mode 100644 .stow-local-ignore create mode 100644 .tmux.conf diff --git a/.config/.gitignore b/.config/.gitignore index 2c83a2a..230c372 100644 --- a/.config/.gitignore +++ b/.config/.gitignore @@ -1,7 +1,8 @@ -/* - -!.gitignore -!btop/ -btop/btop.log -!neofetch/ -!ssh/ \ No newline at end of file +/* + +!.gitignore +!btop/ +btop/btop.log +!neofetch/ +!ssh/ +!tmux/ diff --git a/.config/tmux/tmux.conf b/.config/tmux/tmux.conf new file mode 100644 index 0000000..873214e --- /dev/null +++ b/.config/tmux/tmux.conf @@ -0,0 +1,15 @@ +unbind r +bind r source-file ~/.tmux.conf + +set -g prefix C-y + +#set -g mouse on + +bind-key w select-pane -U +bind-key a select-pane -L +bind-key s select-pane -D +bind-key d select-pane -R + +set -g @plugin 'git@github.com/tmux-plugins/tpm' + +run '~/.tmux/plugins/tpm/tpm' diff --git a/.gitignore b/.gitignore index 75c6105..25b7605 100644 --- a/.gitignore +++ b/.gitignore @@ -1,16 +1 @@ -/* - -!setup -!zsh/ -!.gitignore -!.alias.d/ -!.config/ -!.gitconfig -!.gitconfig.d -!.p10k.zsh -!.zshrc -!.zshenv.template -!.profile -!install -!README.md -!.stow-ignore-local +.zshenv diff --git a/.stow-local-ignore b/.stow-local-ignore new file mode 100644 index 0000000..925e549 --- /dev/null +++ b/.stow-local-ignore @@ -0,0 +1,7 @@ +.git +install +setup +.gitignore +.gitmodules +.zshenv.template +README.md diff --git a/.tmux.conf b/.tmux.conf new file mode 100644 index 0000000..f0c761a --- /dev/null +++ b/.tmux.conf @@ -0,0 +1 @@ +source-file ~/.config/tmux/tmux.conf \ No newline at end of file