Advertisement
Guest User

Untitled

a guest
Jun 24th, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.44 KB | None | 0 0
  1. set -g default-terminal "screen-256color"
  2. set -g terminal-overrides 'xterm*:smcup@:rmcup@'
  3. # Mouse
  4. set -g mouse on
  5. #setw -g mode-mouse on
  6. #set -g mouse-select-pane on
  7. # VI key binding
  8. set -g status-keys vi
  9. setw -g mode-keys vi
  10. # Set prefix to ``
  11. unbind C-b
  12. set -g prefix `
  13. bind ` send-prefix
  14. # Panes
  15. bind | split-window -h
  16. bind - split-window -v
  17. set -g base-index 1
  18. setw -g pane-base-index 1
  19. #unbind "
  20.  
  21. # List of plugins
  22. set -g @plugin 'tmux-plugins/tpm'
  23. #set -g @plugin 'tmux-plugins/tmux-sensible'
  24.  
  25. # Other examples:
  26. # set -g @plugin 'github_username/plugin_name'
  27. # set -g @plugin 'git@github.com/user/plugin'
  28. # set -g @plugin 'git@bitbucket.com/user/plugin'
  29.  
  30. # Copy to system clipboard with y
  31. set -g @plugin 'tmux-plugins/tmux-yank'
  32. #set -g @shell_mode 'vi'
  33. set-option -g set-clipboard on
  34. unbind p
  35. bind p paste-buffer
  36. # Control tabls
  37. #$set -g @plugin 'tmux-plugins/tmux-pain-control'
  38.  
  39. # Prefix Highlight
  40. #set -g @plugin 'tmux-plugins/tmux-prefix-highlight'
  41. #set -g status-right '#{prefix_highlight} | %a %Y-%m-%d %H:%M'
  42. # Statusbar
  43. set -g @plugin 'mshkrebtan/base16-tmux'
  44. set -g status-justify left
  45. set -g status-bg green
  46. set -g status-fg white
  47. set-option -g status-interval 5
  48. set -g status-right-length 150
  49. set -g status-left ""
  50. set -g status-right "#[fg=blue] %m-%d-%Y %H:%M #(whoaimi)"
  51. source-file ~/.tmux/tmuxcolors-base16.conf
  52. #set -g aggressive-resize on
  53. # Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
  54. run '~/.tmux/plugins/tpm/tpm'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement