Advertisement
Guest User

Untitled

a guest
Oct 15th, 2019
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.00 KB | None | 0 0
  1. # List of plugins
  2. set -g @plugin 'tmux-plugins/tpm'
  3. set -g @plugin 'tmux-plugins/tmux-sensible'
  4. # set -g @plugin 'seebi/tmux-colors-solarized'
  5. set -g @plugin 'tmux-plugins/tmux-resurrect'
  6.  
  7. # Other examples:
  8. # set -g @plugin 'github_username/plugin_name'
  9. # set -g @plugin 'git@github.com/user/plugin'
  10. # set -g @plugin 'git@bitbucket.com/user/plugin'
  11.  
  12. set-window-option -g mode-keys vi
  13. set -g @resurrect-strategy-nvim 'session'
  14. set -g @plugin 'jimeh/tmux-themepack'
  15.  
  16. set -g base-index 1
  17. setw -g pane-base-index 1
  18.  
  19. ## COLOUR (Solarized 256)
  20.  
  21. ## default statusbar colors
  22. #set-option -g status-bg colour235 #base02
  23. #set-option -g status-fg colour136 #yellow
  24. ## set-option -g status-attr default
  25.  
  26. ## default window title colors
  27. ## set-window-option -g window-status-fg colour244 #base0
  28. ## set-window-option -g window-status-bg default
  29. ##set-window-option -g window-status-attr dim
  30.  
  31. ## active window title colors
  32. ## set-window-option -g window-status-current-fg colour166 #orange
  33. ## set-window-option -g window-status-current-bg default
  34. ##set-window-option -g window-status-current-attr bright
  35.  
  36. ## pane border
  37. ## set-option -g pane-border-fg colour235 #base02
  38. ## set-option -g pane-active-border-fg colour240 #base01
  39.  
  40. ## message text
  41. ## set-option -g message-bg colour235 #base02
  42. ## set-option -g message-fg colour166 #orange
  43.  
  44. ## pane number display
  45. #set-option -g display-panes-active-colour colour33 #blue
  46. #set-option -g display-panes-colour colour166 #orange
  47.  
  48. ## clock
  49. #set-window-option -g clock-mode-colour colour64 #green
  50.  
  51. ## bell
  52. #set-window-option -g window-status-bell-style fg=colour235,bg=colour160 #base02, red
  53. #set -g default-terminal "xterm"
  54. #set-option -g renumber-windows on
  55. #set -s escape-time 0
  56. #set -g default-terminal "screen-256color"
  57. # Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
  58. run-shell ~/.tmux/plugins/resurrect.tmux
  59. set -g @plugin 'tmux-plugins/tmux-yank'
  60. set -g @themepack 'powerline/block/red'
  61. run -b '~/.tmux/plugins/tpm/tpm'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement