pages/dotfiles/.tmux.conf

35 lines
927 B
Plaintext
Executable File

set -g default-terminal "xterm-256color"
set-option -ga terminal-overrides ",xterm-256color:Tc"
unbind C-b
set -g prefix C-a
bind C-a send-prefix
bind q kill-pane
unbind-key '"'
unbind-key %
unbind-key v
bind v split-window -v
set-window-option -g mode-keys vi
set -g renumber-windows on
set -g status-left ''
set -g status-right '#{now_playing} %I:%M%p '
set -g status-style 'fg=colour15 bg=colour0'
set -g window-status-current-style 'fg=colour7 bold'
set -g window-status-activity-style 'fg=colour2'
set -g window-status-style 'fg=colour15 bg=colour0'
set -g pane-border-style 'fg=colour15'
set -g pane-active-border-style 'fg=colour15'
set -g message-style 'fg=colour15 bg=colour0'
set -g clock-mode-colour 'colour2'
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
set -g @plugin 'christoomey/vim-tmux-navigator'
set -g @plugin 'spywhere/tmux-now-playing'
run '~/.tmux/plugins/tpm/tpm'