dotfiles/.tmux.conf

16 lines
412 B
Plaintext
Raw Normal View History

2022-05-17 13:15:43 -05:00
# set TERM variable inside tmux
2022-04-26 18:52:18 -05:00
set -g default-terminal "xterm-256color"
2022-05-17 11:59:40 -05:00
set -g @plugin "tmux-plugins/tpm"
set -g @plugin "arcticicestudio/nord-tmux"
2022-05-17 13:15:43 -05:00
# set prefix to be control+a
2022-04-26 11:15:41 -05:00
unbind C-b
set-option -g prefix C-a
2022-05-17 13:15:43 -05:00
# tab management (consistent with vim config)
2022-05-17 11:59:40 -05:00
bind z previous-window
2022-04-26 11:15:41 -05:00
bind x next-window
2022-05-17 11:59:40 -05:00
2022-05-17 13:15:43 -05:00
# initialize plugin manager (this line should always be at the very bottom)
2022-05-17 11:59:40 -05:00
run '~/.tmux/plugins/tpm/tpm'