From 882a7dc2dca2ce0b79b24fb4a538a863c7bf36ef Mon Sep 17 00:00:00 2001 From: Stefan Imhoff Date: Wed, 23 Aug 2023 13:45:05 +0200 Subject: [PATCH] chore(tmux): add window number --- tmux/tmux.conf | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tmux/tmux.conf b/tmux/tmux.conf index 56d467d..1fc8623 100644 --- a/tmux/tmux.conf +++ b/tmux/tmux.conf @@ -64,9 +64,9 @@ set -g status-right-length 100 set -g status-right "#{now_playing} " # Windows -set -g window-status-current-format "#[fg=magenta,bold,bg=default] #W#{?window_zoomed_flag,,} " +set -g window-status-current-format "#[fg=magenta,bold,bg=default] #I#W#{?window_zoomed_flag,,} " set -g window-status-separator "" -set -g window-status-format "#[fg=white,bg=default] #W#{?window_bell_flag,,} " +set -g window-status-format "#[fg=white,bg=default] #I#W#{?window_bell_flag,,} " # Change the default delay set -sg escape-time 0 @@ -93,13 +93,13 @@ bind-key & kill-window bind-key x kill-pane # Lazygit -bind G new-window -c "#{pane_current_path}" -n "" lazygit +bind G new-window -c "#{pane_current_path}" -n " " lazygit # Lazydocker -bind D new-window -c "#{pane_current_path}" -n "" lazydocker +bind D new-window -c "#{pane_current_path}" -n " " lazydocker # LF Terminal File Manager -bind O new-window -c "#{pane_current_path}" -n "" lf +bind O new-window -c "#{pane_current_path}" -n " " lf # Run Neovim Telescope find files bind F run-shell "nvr-tmux --remote-send ':Telescope find_files'" @@ -129,6 +129,7 @@ set -g @thumbs-command 'echo -n {} | pbcopy' # prefix + I to install, prefix + U to update set -g @plugin 'tmux-plugins/tpm' +set -g @plugin 'tmux-plugins/tmux-sensible' set -g @plugin 'tmux-plugins/tmux-battery' set -g @plugin 'tmux-plugins/tmux-continuum' set -g @plugin 'tmux-plugins/tmux-copycat' @@ -136,7 +137,6 @@ set -g @plugin 'tmux-plugins/tmux-logging' set -g @plugin 'tmux-plugins/tmux-open' set -g @plugin 'tmux-plugins/tmux-pain-control' set -g @plugin 'tmux-plugins/tmux-resurrect' -set -g @plugin 'tmux-plugins/tmux-sensible' set -g @plugin 'tmux-plugins/tmux-sessionist' set -g @plugin 'tmux-plugins/tmux-urlview' set -g @plugin 'tmux-plugins/tmux-yank'