Add tmux config
This commit is contained in:
parent
9ae7c66408
commit
b17ac1978e
|
@ -0,0 +1,36 @@
|
||||||
|
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'
|
Loading…
Reference in New Issue