summaryrefslogtreecommitdiff
path: root/.tmux.conf
diff options
context:
space:
mode:
authorEnricoGuccii <partyka.003@proton.me>2025-08-03 23:58:38 +0200
committerEnricoGuccii <partyka.003@proton.me>2025-08-03 23:58:38 +0200
commit50cd6c1d7fa634b83a02b6c5b54d90f9f98dcd1a (patch)
tree046762906fea915875ba38865e48b661fb4eb3d9 /.tmux.conf
parentb5ce366b3f267ef311c9135b0579b03d7588ccbd (diff)
tmux config
Diffstat (limited to '.tmux.conf')
-rw-r--r--.tmux.conf37
1 files changed, 37 insertions, 0 deletions
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"