Files
dotFiles/.config/tmux/tmux.conf

46 lines
1.2 KiB
Plaintext
Raw Normal View History

2024-09-16 20:56:14 +05:30
#!/usr/bin/env bash
2024-05-14 14:37:06 +05:30
set-option -sa terminal-overrides ",xterm*:Tc"
set -g mouse on
unbind C-b
2024-10-18 20:16:40 +05:30
set -g prefix C-x
bind C-x send-prefix
2024-05-14 14:37:06 +05:30
# Start windows and panes at 1, not 0
set -g base-index 1
set -g pane-base-index 1
set-window-option -g pane-base-index 1
set-option -g renumber-windows on
set -g @plugin 'tmux-plugins/tmux-sensible'
set -g @plugin 'christoomey/vim-tmux-navigator'
# Better split window keybind and same directory for new panes
unbind '"'
unbind %
bind - split-window -v -c "#{pane_current_path}"
bind _ split-window -h -c "#{pane_current_path}"
bind -r k select-pane -U
bind -r j select-pane -D
bind -r h select-pane -L
bind -r l select-pane -R
2024-07-07 16:26:55 +05:30
2025-03-09 00:53:16 +05:30
set -g @plugin 'catppuccin/tmux'
2024-10-05 16:47:43 +05:30
# Catpuccin Theme....
set -g status-left ""
2025-03-09 00:53:16 +05:30
set -g status-right "#{E:@catppuccin_status_application}"
set -ag status-right "#{E:@catppuccin_status_session}"
set -g @catppuccin_window_current_number_color "#{@thm_peach}"
2024-10-05 16:47:43 +05:30
2025-03-09 00:53:16 +05:30
set -ogq @catppuccin_window_text " #W"
set -ogq @catppuccin_window_current_text " #W"
set -ogq @catppuccin_status_left_separator "█"
set -ogq @catppuccin_window_flags "icon"
2024-09-26 02:39:46 +05:30
2025-03-09 00:53:16 +05:30
# RUN TPM
set -g @plugin 'tmux-plugins/tpm'
2024-07-07 16:26:55 +05:30
run '~/.config/tmux/plugins/tpm/tpm'