aboutsummaryrefslogtreecommitdiff
path: root/stow/tmux/.tmux.conf
diff options
context:
space:
mode:
Diffstat (limited to 'stow/tmux/.tmux.conf')
-rw-r--r--stow/tmux/.tmux.conf15
1 files changed, 9 insertions, 6 deletions
diff --git a/stow/tmux/.tmux.conf b/stow/tmux/.tmux.conf
index 5f22b01..e491eae 100644
--- a/stow/tmux/.tmux.conf
+++ b/stow/tmux/.tmux.conf
@@ -19,13 +19,12 @@ bind J resize-pane -D 3
bind K resize-pane -U 3
bind L resize-pane -R 3
# Rollodex commands
-bind n run-shell "bash $HOME/.tmux/scripts/rolodex.sh next"
-bind p run-shell "bash $HOME/.tmux/scripts/rolodex.sh prev"
-# Url Searching
-bind C-u run-shell "bash $HOME/.tmux/scripts/url_search.sh"
+bind n run-shell "rolodex next"
+bind p run-shell "rolodex prev"
+bind C-m run-shell "rolodex toggle"
+bind C-e run-shell "rolodex new"
# Bind the last window/pane command
bind C-b last-pane
-bind C-f run-shell "bash $HOME/.tmux/scripts/path_search.sh"
# Faster window switching
bind C-n next-window
bind C-p previous-window
@@ -43,6 +42,11 @@ bind -Tcopy-mode-vi y send -X copy-pipe-and-cancel "tmux save-buffer - | xp"
# Hitting enter will copy text but not leave vi mode
unbind -T copy-mode-vi Enter
bind -Tcopy-mode-vi Enter send -X copy-pipe "tmux save-buffer - | xp"
+# clock mode is over written by sessionist
+bind C-t clock-mode
+# Use fzf for switching sessions
+unbind s
+bind s run-shell 'tmux_session_fzf_wrapper'
#####################################
# Settings
@@ -83,7 +87,6 @@ set-option -g status-right "#{?window_bigger,[#{window_offset_x}#,#{window_offse
# List of plugins
set -g @plugin 'tmux-plugins/tpm'
-set -g @plugin 'thornycrackers/tmux-drawer'
set -g @plugin 'Thornycrackers-Forks/tmux-sessionist'
set -g @plugin 'Thornycrackers-Forks/tmux-open'
set -g @plugin 'Thornycrackers-Forks/tmux-fingers'