Created
September 27, 2024 01:43
-
-
Save krishna1306/7b7cff7f8f257c2374c287428ac56a08 to your computer and use it in GitHub Desktop.
My TMUX configuration created by following videos from typecraft
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
unbind r | |
bind r source-file ~/.tmux.conf | |
set -g prefix C-z | |
set -g mouse on | |
bind-key h select-pane -L | |
bind-key j select-pane -D | |
bind-key k select-pane -U | |
bind-key l select-pane -R | |
set-option -g status-position top | |
# List of plugins | |
set -g @plugin 'catppuccin/tmux' | |
set -g @plugin 'tmux-plugins/tpm' | |
# Config3 theme options from catppuccin | |
set -g @catppuccin_window_left_separator "" | |
set -g @catppuccin_window_right_separator " " | |
set -g @catppuccin_window_middle_separator " ‚ñà" | |
set -g @catppuccin_window_number_position "right" | |
set -g @catppuccin_window_default_fill "number" | |
set -g @catppuccin_window_default_text "#W" | |
set -g @catppuccin_window_current_fill "number" | |
set -g @catppuccin_window_current_text "#W" | |
set -g @catppuccin_status_modules_right "directory session" | |
set -g @catppuccin_status_left_separator " " | |
set -g @catppuccin_status_right_separator "ÓÇ¥" | |
set -g @catppuccin_status_fill "icon" | |
set -g @catppuccin_status_connect_separator "no" | |
set -g @catppuccin_directory_text "#{pane_current_path}" | |
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf) | |
run '~/.tmux/plugins/tpm/tpm' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment