summaryrefslogtreecommitdiff
path: root/.tmux.conf
diff options
context:
space:
mode:
authorTom Li Dobnik <tomlidobnik1@gmail.com>2025-08-09 18:08:51 +0200
committerTom Li Dobnik <tomlidobnik1@gmail.com>2025-08-09 18:08:51 +0200
commit2dab9e093cced83b8a2ae3c477052594f70e9a4d (patch)
treeaa5e06a4ed8d0643219f301cc412bd6beb5fd31a /.tmux.conf
parentda2418238c5c3aa9280a13be13ef43975345e1fe (diff)
cleanup
Diffstat (limited to '.tmux.conf')
-rw-r--r--.tmux.conf11
1 files changed, 3 insertions, 8 deletions
diff --git a/.tmux.conf b/.tmux.conf
index 995566c..14c1b3a 100644
--- a/.tmux.conf
+++ b/.tmux.conf
@@ -2,6 +2,7 @@
unbind r
unbind Space
unbind C-d
+unbind C-l
unbind C-a
set-option -g set-clipboard on
@@ -12,12 +13,10 @@ bind-key Space switch-client -l
bind-key ";" split-window -h -c "#{pane_current_path}"
bind-key "'" split-window -v -c "#{pane_current_path}"
bind-key g new-window -n lazygit -c "#{pane_current_path}" "lazygit"
-bind-key -n M-h select-window -t -1
-bind-key -n M-l select-window -t +1
bind -N "⌘+l last-session (via sesh) " L run-shell "sesh last || tmux display-message -d 1000 'Oops, no last sessions found'"
bind -N "⌘+l last-session (via sesh) " C-z run-shell "sesh last || tmux display-message -d 1000 'Oops, no last sessions found'"
-bind-key Left swap-window -t -1 \; select-window -t -1
-bind-key Right swap-window -t +1 \; select-window -t +1
+bind-key C-j swap-window -t -1 \; select-window -t -1
+bind-key C-k swap-window -t +1 \; select-window -t +1
bind-key "K" run-shell "sesh connect \"$(
sesh list --icons --hide-duplicates | fzf-tmux -p 100%,100% --no-border \
@@ -58,10 +57,6 @@ set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
set -g @plugin 'christoomey/vim-tmux-navigator'
set -g @plugin 'tmux-plugins/tmux-yank'
-set -g @plugin 'tmux-plugins/tmux-resurrect'
-
-set -g @resurrect-save 'C-e'
-set -g @resurrect-restore 'C-r'
run '~/.tmux/plugins/tpm/tpm'