0
0
.dotfiles/tmux/tmux.conf

53 lines
1.4 KiB
Bash

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
bind r source-file ~/.dotfiles/tmux/tmux.conf
set-window-option -g clock-mode-style 12
set-option clock-mode-colour "#00e7e3"
set -g window-status-current-format ''
set -g status-bg "#232323"
#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
set-environment -g TMPDIR $PREFIX/tmp
run-shell 'ln -s ~/.dotfiles/powerline/scripts/powerline $PREFIX/bin'
# 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'
# 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 ~/.dotfiles/.tmux/plugins/tpm/tpm