Last active
June 19, 2018 14:02
-
-
Save rashad612/35b739cc8effd03c441cb6fd4c497058 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
source "/usr/share/tmux/powerline.conf" | |
# split panes using | and - | |
bind | split-window -h -c "#{pane_current_path}" | |
bind - split-window -v -c "#{pane_current_path}" | |
set-option -g status-interval 1 | |
set-option -g automatic-rename on | |
set-option -g automatic-rename-format '#{b:pane_current_path}' | |
setw -g mode-keys vi | |
bind c new-window -c "#{pane_current_path}" | |
bind-key -n C-S-Left swap-window -t -1 | |
bind-key -n C-S-Right swap-window -t +1 | |
unbind '"' | |
unbind % | |
# tpm | |
set -g @plugin 'tmux-plugins/tpm' | |
set -g @plugin 'tmux-plugins/tmux-sensible' | |
set -g @plugin 'arcticicestudio/nord-tmux' | |
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf) | |
run '~/.tmux/plugins/tpm/tpm' | |
run-shell "~/.tmux/themes/nord-tmux/nord.tmux" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment