37 lines
1.1 KiB
Plaintext
37 lines
1.1 KiB
Plaintext
|
unbind C-b
|
||
|
set -g prefix C-a
|
||
|
set-option -g default-terminal "screen-256color"
|
||
|
bind-key "'" split-window -h
|
||
|
set -g base-index 1
|
||
|
set-window-option -g xterm-keys on
|
||
|
setw -g pane-base-index 1
|
||
|
set -g renumber-windows on
|
||
|
set -g history-limit 10000
|
||
|
setw -g xterm-keys on
|
||
|
set -g default-terminal "screen-256color"
|
||
|
bind 0 select-window -t :10
|
||
|
setw -g automatic-rename on
|
||
|
set -g status-bg default
|
||
|
# List of plugins
|
||
|
set-window-option -g status-fg colour15
|
||
|
set-window-option -g xterm-keys on
|
||
|
setw -g mouse off
|
||
|
bind-key g split-window -h -c "#{pane_current_path}"
|
||
|
bind-key G split-window -v -c "#{pane_current_path}"
|
||
|
bind h select-pane -L
|
||
|
bind j select-pane -D
|
||
|
bind k select-pane -U
|
||
|
bind l select-pane -R
|
||
|
bind R source-file ~/.tmux.conf \; display-message "Config reloaded..."
|
||
|
set -g status-justify centre
|
||
|
|
||
|
set -g @themepack 'powerline/double/cyan'
|
||
|
|
||
|
set -g @plugin 'tmux-plugins/tpm'
|
||
|
set -g @plugin 'tmux-plugins/tmux-sensible'
|
||
|
set -g @plugin 'tmux-plugins/tmux-yank'
|
||
|
set -g @plugin 'jimeh/tmux-themepack'
|
||
|
set-option -g status-position bottom
|
||
|
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
|
||
|
run '~/.tmux/plugins/tpm/tpm'
|