Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- unbind r
- unbind r
- bind r source-file ~/.tmux.conf
- set -g prefix C-s
- 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
- # Remove window number from the left
- set -g status-left ''
- # Remove date/time from the right
- set -g status-right ''
- set -g status-style bg=default,fg=default
- set -as terminal-overrides ",*:RGB"
- set -g default-terminal "xterm-kitty"
- set -g status-style bg=colour0,fg=default
- # List of plugins
- set -g @plugin 'tmux-plugins/tpm'
- set -g @plugin 'catppuccin/tmux'
- set -g @plugin 'tmux-plugins/tmux-yank'
- # Configure the catppuccin plugin
- set -g @catppuccin_window_status_style "rounded"
- # Load catppuccin
- # run ~/.config/tmux/plugins/catppuccin/tmux/catppuccin.tmux
- run ~/.tmux/plugins/tmux/catppuccin.tmux
- # Make the status line pretty and add some modules
- set -g @catppuccin_flavour 'frappe'
- 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 $cwd
- set-option -g status-position bottom
- set -g status-bg default
- run ~/.config/tmux/plugins/tmux-plugins/tmux-cpu/cpu.tmux
- run ~/.config/tmux/plugins/tmux-plugins/tmux-battery/battery.tmux
- # Other examples:
- # set -g @plugin 'github_username/plugin_name'
- # set -g @plugin 'github_username/plugin_name#branch'
- # set -g @plugin '[email protected]:user/plugin'
- # set -g @plugin '[email protected]:user/plugin'
- # Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
- run '~/.tmux/plugins/tpm/tpm'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement