21 lines
411 B
Bash
21 lines
411 B
Bash
set -g mouse on
|
|
|
|
# Plugins
|
|
set -g @plugin 'tmux-plugins/tpm'
|
|
set -g @plugin 'rose-pine/tmux'
|
|
set -g @plugin 'ofirgall/tmux-window-name'
|
|
|
|
# Plugin config
|
|
source $HOME/.tmux/plugin-configs/rose-pine.conf
|
|
|
|
# General config
|
|
source $HOME/.tmux/globals.conf
|
|
|
|
# Nvim helper
|
|
source $HOME/.tmux/nvim.conf
|
|
|
|
# Keybindings
|
|
source $HOME/.tmux/bindings.conf
|
|
|
|
# Initialise tmux plugin manager.
|
|
run $HOME/.tmux/plugins/tpm/tpm
|