Last active
April 13, 2019 09:03
-
-
Save ordoghl/3d0d6ac1d39fe36a21031154e0783d2e to your computer and use it in GitHub Desktop.
Tmux configuration
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
set -g @plugin 'nhdaly/tmux-better-mouse-mode' | |
set -g @plugin 'tmux-plugins/tmux-resurrect' | |
set-option -g mouse on | |
bind -n M-Left select-pane -L | |
bind -n M-Right select-pane -R | |
bind -n M-Up select-pane -U | |
bind -n M-Down select-pane -D | |
bind '%' split-window -h -c '#{pane_current_path}' # Split panes horizontal | |
bind '"' split-window -v -c '#{pane_current_path}' # Split panes vertically | |
bind c new-window -c '#{pane_current_path}' # Create new window | |
run-shell "powerline-daemon -q" | |
source "/home/laci/.local/lib/python3.6/site-packages/powerline/bindings/tmux/powerline.conf" | |
source-file "${HOME}/.tmux-themepack/powerline/double/orange.tmuxtheme" | |
set -g default-command /usr/bin/fish | |
set -g default-shell /usr/bin/fish | |
set -g @plugin 'jimeh/tmux-themepack' | |
set -g @themepack 'powerline/block/cyan' | |
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf) | |
run '~/.tmux/plugins/tpm/tpm |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment