dotfiles/tmux/.tmux.conf

19 lines
599 B
Plaintext

# Pretend to be screen-256color
set-option -g default-terminal "screen-256color"
# Allow mouse input (to switch window / panes)
set -g mouse on
# Set new panes to open in current directory
bind c new-window -c "#{pane_current_path}"
bind '"' split-window -c "#{pane_current_path}"
bind % split-window -h -c "#{pane_current_path}"
# Tmux Plugin Manager
# Note: Clone https://github.com/tmux-plugins/tpm to ~/.tmux/plugins/tpm first
set -g @plugin 'tmux-plugins/tpm'
# Theme
set -g @plugin "arcticicestudio/nord-tmux"
# Load Tmux Plugin Manager (keep this at the end)
run '~/.tmux/plugins/tpm/tpm'