dotfiles/.config/tmux/tmux.conf

19 lines
510 B
Text
Raw Normal View History

2024-09-02 09:00:13 -04:00
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
set -g @plugin 'tmux-plugins/tmux-prefix-highlight'
set -g @plugin 'christoomey/vim-tmux-navigator'
2024-11-01 09:20:47 -04:00
set -g @plugin 'catppuccin/tmux#v2.1.0'
2024-09-02 09:00:13 -04:00
2024-11-10 16:14:42 -05:00
set -g @catppuccin_flavor 'frappe'
2024-09-02 09:00:13 -04:00
unbind C-b
set-option -g prefix C-a
bind-key C-a send-prefix
setw -g mode-keys vi
bind c new-window -c "#{pane_current_path}"
bind '"' split-window -c "#{pane_current_path}"
bind % split-window -h -c "#{pane_current_path}"
run '~/.tmux/plugins/tpm/tpm'