Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2019
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | None | 0 0
  1. set -g @plugin 'nhdaly/tmux-better-mouse-mode'
  2. set -g @plugin 'tmux-plugins/tmux-resurrect'
  3.  
  4. set-option -g mouse on
  5.  
  6. bind -n M-Left select-pane -L
  7. bind -n M-Right select-pane -R
  8. bind -n M-Up select-pane -U
  9. bind -n M-Down select-pane -D
  10.  
  11. bind '%' split-window -h -c '#{pane_current_path}' # Split panes horizontal
  12. bind '"' split-window -v -c '#{pane_current_path}' # Split panes vertically
  13. bind c new-window -c '#{pane_current_path}' # Create new window
  14.  
  15. run-shell "powerline-daemon -q"
  16. source "/home/laci/.local/lib/python3.6/site-packages/powerline/bindings/tmux/powerline.conf"
  17. source-file "${HOME}/.tmux-themepack/powerline/double/orange.tmuxtheme"
  18.  
  19. set -g default-command /usr/bin/fish
  20. set -g default-shell /usr/bin/fish
  21.  
  22. set -g @plugin 'jimeh/tmux-themepack'
  23. set -g @themepack 'powerline/block/cyan'
  24.  
  25. # Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
  26. run '~/.tmux/plugins/tpm/tpm
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement