diff options
author | Cody Hiar <cody@hiar.ca> | 2021-01-27 09:49:43 -0700 |
---|---|---|
committer | Cody Hiar <cody@hiar.ca> | 2021-01-27 09:49:43 -0700 |
commit | 1b3a041521e3bb59febd21d6f86f1881d86d971e (patch) | |
tree | c07a55e7a2b377769dddd30581a18bf477aa1a69 /stow | |
parent | 3a613a9046440b161ee424de1cb9239d176a4932 (diff) |
add latest configs
Diffstat (limited to 'stow')
-rw-r--r-- | stow/tmux/.tmux.conf | 15 |
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' |