0
0
.dotfiles/.tmux/.tmux.conf

50 lines
1.3 KiB
Plaintext
Raw Normal View History

2023-05-02 13:02:13 -04:00
unbind C-b
set-option -g prefix C-a
bind-key C-a send-prefix
set -g renumber-windows on
# split panes using | and -
bind | split-window -h
bind - split-window -v
unbind '"'
unbind %
#set-option -g autom
2023-05-02 14:24:39 -04:00
bind r source-file ~/.dotfiles/.tmux/.tmux.conf
2023-05-02 13:02:13 -04:00
set-window-option -g clock-mode-style 12
set-option clock-mode-colour "#00e7e3"
set -g window-status-current-format ''
#set-option -g status-bg "#00d9db"
#set-option -g status-fg "#000011"
set -g pane-border-status top
set -g message-style 'bg=#00d9db,fg=#000011'
set -g base-index 1
set -g mouse on
set -g pane-border-style 'fg=#affffe'
set -g pane-active-border-style 'fg=#00e7e3'
set -g pane-border-lines "single"
set -g visual-activity on
set -g visual-bell on
### plugins ###
set-environment -g TMUX_PLUGIN_MANAGER_PATH "~/.dotfiles/.tmux/plugins/"
# List of plugins
set -g @plugin 'tmux-plugins/tpm'
set -g @plugin 'tmux-plugins/tmux-sensible'
set -g @plugin 'erikw/tmux-powerline'
set -g @plugin 'thewtex/tmux-mem-cpu-load'
# Other examples:
# set -g @plugin 'github_username/plugin_name'
# set -g @plugin 'github_username/plugin_name#branch'
# set -g @plugin 'git@github.com:user/plugin'
# set -g @plugin 'git@bitbucket.com:user/plugin'
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf
run-shell "~/.dotfiles/.tmux/plugins/tpm/tpm"