Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # easy reload
- unbind r
- bind r source-file ~/.tmux.conf
- # set up vim navigation commands
- bind h select-pane -L
- bind j select-pane -D
- bind k select-pane -U
- bind l select-pane -R
- bind - resize-pane -D 5
- # Change split commands for windows
- bind H split-window -h
- bind V split-window -v
- bind = select-layout even-horizontal
- # Change prefix
- set -g prefix C-a
- set-window-option -g mode-keys vi
- set-option -g renumber-windows on
- set -g base-index 1
- set -g pane-base-index 1
- set -g @catppuccin_status_modules_right "date_time battery directory session"
- set -g status-bg black
- set -g status-fg blue
- set -g window-status-current-style fg=red,bg=black
- set -g status-interval 1
- set -g status-left-length 100
- set -g status-left ""
- set -g @plugin 'tmux-plugins/tpm'
- set -g @plugin 'tmux-plugins/tmux-resurrect'
- set -g @plugin 'tmux-plugins/tmux-continuum'
- set -g @plugin 'sainnhe/tmux-fzf'
- set -g @plugin 'christoomey/vim-tmux-navigator'
- set -g @plugin 'catppuccin/tmux'
- set -g @plugin 'tmux-plugins/tmux-battery'
- set -g status-position top
- run -b '~/.tmux/plugins/tpm/tpm'
- set-option -g set-titles on
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement