dotfiles/.tmux.conf

68 lines
2.4 KiB
Plaintext
Raw Normal View History

set-option -g status on
set-option -g status-interval 2
2015-08-05 10:39:54 -07:00
set-option -g renumber-windows on
2017-04-28 08:59:01 -07:00
set-option -g history-limit 10000
set -s escape-time 0
### Reload the config with r
bind-key r source-file ~/.tmux.conf\; display-message "Reloaded config"
2017-04-28 08:59:01 -07:00
### Toggle Mouse Mode
bind-key m set-window-option mouse\; display-message "mouse support is now #{?mouse,on,off}"
2012-11-09 20:44:06 -08:00
2024-05-29 10:22:47 -07:00
### Open LazyGit in a popup
bind-key g display-popup -E -w 90% -h 90% lazygit
# New panes and windows have same cwd as the one opening it
bind c new-window -c "#{pane_current_path}"
bind '"' split-window -c "#{pane_current_path}"
bind % split-window -h -c "#{pane_current_path}"
2012-11-09 20:44:06 -08:00
### vim/tmux navigation
2015-08-05 10:39:54 -07:00
set -g focus-events on
is_vim='echo "#{pane_current_command}" | grep -iqE "(^|\/)g?(view|n?vim?)(diff)?$"'
bind -n C-Left if-shell "$is_vim" "send-keys C-h" "select-pane -L"
bind -n C-Down if-shell "$is_vim" "send-keys C-j" "select-pane -D"
bind -n C-Up if-shell "$is_vim" "send-keys C-k" "select-pane -U"
bind -n C-Right if-shell "$is_vim" "send-keys C-l" "select-pane -R"
# change windows
bind -n S-Right next-window
bind -n S-Left previous-window
set -g base-index 1 # Windows start at index 1
setw -g pane-base-index 1 # Panes start at index 1
2012-11-09 20:44:06 -08:00
# clock
set-window-option -g clock-mode-colour green #green
set -g status-right '#(date "+%%Y-%m-%d %%H:%%M:%%S")'
# bell
set-window-option -g window-status-bell-style fg=white,bg=red #base2, red
2018-08-09 09:52:36 -07:00
2024-05-29 15:52:05 -07:00
set -g default-terminal "tmux"
2024-05-30 08:33:05 -07:00
# Color Scheme
set -g @catppuccin_flavour 'latte'
set -g @catppuccin_window_left_separator ""
set -g @catppuccin_window_middle_separator ""
set -g @catppuccin_window_right_separator "█ "
set -g @catppuccin_window_default_text "#W"
set -g @catppuccin_window_default_fill "number"
# set -g @catppuccin_window_current_text "#W"
set -g @catppuccin_window_current_text "#W#{?window_zoomed_flag,  ,}"
set -g @catppuccin_window_current_fill "number"
set -g @catppuccin_status_modules_right "directory date_time session"
set -g @catppuccin_directory_text "#{pane_current_path}"
set -g @catppuccin_status_left_separator " "
set -g @catppuccin_status_fill "icon"
set -g @catppuccin_window_status_enable "no"
2022-11-18 10:28:20 -08:00
2024-05-30 08:32:35 -07:00
# List of plugins
set -g @plugin 'tmux-plugins/tpm'
# set -g @plugin 'tmux-plugins/tmux-sensible'
2024-05-30 08:33:05 -07:00
set -g @plugin 'catppuccin/tmux'
2024-05-30 08:32:35 -07:00
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
run '~/.tmux/plugins/tpm/tpm'