summaryrefslogtreecommitdiff
path: root/.config/tmux
diff options
context:
space:
mode:
authorDavid Luevano Alvarado <david@luevano.xyz>2024-02-01 15:38:23 -0600
committerDavid Luevano Alvarado <david@luevano.xyz>2024-02-01 15:38:23 -0600
commit3d2cf213ec186f707d60049122281e688b8160ee (patch)
tree035970085748b65891b5ff05b491c5c2b85346d3 /.config/tmux
parent56849e1d719bf1be48dccd472f0f9cd21b128e26 (diff)
feat: update nvim, add tmux-sessionizer
Diffstat (limited to '.config/tmux')
-rw-r--r--.config/tmux/tmux.conf10
1 files changed, 9 insertions, 1 deletions
diff --git a/.config/tmux/tmux.conf b/.config/tmux/tmux.conf
index 3d0661c..6648bb3 100644
--- a/.config/tmux/tmux.conf
+++ b/.config/tmux/tmux.conf
@@ -9,16 +9,24 @@ set -sg escape-time 50
set -g default-terminal "screen-256color"
set -as terminal-features ",xterm-256color:RGB"
+
### tpm config from here onwards
# general
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
+# use tmux-sessionizer instead
# resurrect
-set -g @plugin 'tmux-plugins/tmux-resurrect'
+# set -g @plugin 'tmux-plugins/tmux-resurrect'
# powerline
set -g @plugin 'erikw/tmux-powerline'
+### others
+# https://github.com/jrmoulton/tmux-sessionizer
+bind C-o display-popup -E "tms"
+bind C-j display-popup -E "tms switch"
+bind C-w display-popup -E "tms windows"
+
### initialize tpm (keep this line at the very bottom of tmux.conf)
run '/usr/share/tmux-plugin-manager/tpm'