31 lines
1.0 KiB
Plaintext
31 lines
1.0 KiB
Plaintext
set-environment -g TMUX_PLUGIN_MANAGER_PATH '~/.local/share/tmux/plugins'
|
|
|
|
set-window-option -g mode-keys vi
|
|
bind-key -T copy-mode-vi 'v' send -X begin-selection
|
|
bind-key -T copy-mode-vi 'y' send -X copy-selection
|
|
|
|
bind | split-window -h -c "#{pane_current_path}"
|
|
bind - split-window -v -c "#{pane_current_path}"
|
|
bind c new-window -c "#{pane_current_path}"
|
|
unbind '"'
|
|
unbind %
|
|
|
|
set -g mouse on
|
|
set -g @themepack 'powerline/double/blue'
|
|
set-option -g xterm-keys on
|
|
|
|
set-window-option -g status-left " #S "
|
|
set-window-option -g status-right " #{prefix_highlight} \"#(hostname)\" %H:%M %d-%b-%y "
|
|
set-window-option -g window-status-format " #I: #W "
|
|
set-window-option -g window-status-current-format " #I: #W "
|
|
|
|
# Plugins (Keep this last)
|
|
set -g @plugin 'tmux-plugins/tpm'
|
|
set -g @plugin 'christoomey/vim-tmux-navigator'
|
|
set -g @plugin 'tmux-plugins/tmux-yank'
|
|
set -g @plugin 'jimeh/tmux-themepack'
|
|
run '~/.local/share/tmux/plugins/tpm/tpm'
|
|
|
|
set -g default-shell /bin/zsh
|
|
set-option -sa terminal-overrides ',screen-256color:RGB'
|