From 50cd6c1d7fa634b83a02b6c5b54d90f9f98dcd1a Mon Sep 17 00:00:00 2001 From: EnricoGuccii Date: Sun, 3 Aug 2025 23:58:38 +0200 Subject: tmux config --- .tmux.conf | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 .tmux.conf diff --git a/.tmux.conf b/.tmux.conf new file mode 100644 index 0000000..c8524bb --- /dev/null +++ b/.tmux.conf @@ -0,0 +1,37 @@ +set -g mouse on + +setw -g mode-keys vi +bind h select-pane -L +bind j select-pane -D +bind k select-pane -U +bind l select-pane -R + +set -g base-index 1 +set -g pane-base-index 1 +set-window-option -g pane-base-index 1 +set-option -g renumber-windows on + +bind -n M-Left select-pane -L +bind -n M-Right select-pane -R +bind -n M-Up select-pane -U +bind -n M-Down select-pane -D + +bind -n S-Left previous-window +bind -n S-Right next-window + +set -g @continuum-restore 'on' +set -g @catppuccin_flavour 'mocha' + +set -g @plugin 'tmux-plugins/tpm' +set -g @plugin 'tmux-plugins/tmux-sensible' +set -g @plugin 'christoomey/vim-tmux-navigator' +set -g @plugin 'dreamsofcode-io/catppuccin-tmux' +set -g @plugin 'tmux-plugins/tmux-yank' +set -g @plugin 'tmux-plugins/tmux-resurrect' +set -g @plugin 'tmux-plugins/tmux-continuum' + +run '~/.tmux/plugins/tpm/tpm' + +bind '"' split-window -v -c "#{pane_current_path}" +bind % split-window -h -c "#{pane_current_path}" +set-option -g status-bg "#121212" -- cgit v1.2.3