From soheil, 2 Weeks ago, written in Plain Text.
This paste will kick the bucket in 1 Week.
Embed
  1. # INIT
  2. set -g default-terminal "tmux-256color"
  3. # set -g default-terminal "screen-256color"
  4. # set -g default-terminal "xterm-256color"
  5. # set -ga terminal-overrides ",*256col*:Tc"
  6. set -as terminal-overrides ',*:Tc'
  7. # set -ga terminal-overrides ",xterm-256color:Tc"
  8. set -g mouse on
  9.  
  10. # Undercurl
  11. # set -g default-terminal "${TERM}"
  12. set -as terminal-overrides ',*:Smulx=\E[4::%p1%dm'  # undercurl support
  13. set -as terminal-overrides ',*:Setulc=\E[58::2::%p1%{65536}%/%d::%p1%{256}%/%{255}%&%d::%p1%{255}%&%d%;m'  # underscore colours - needs tmux-3.0
  14.  
  15. # action key
  16. unbind r
  17. bind r source-file ~/.tmux.conf
  18.  
  19. # List of Plugins
  20. set -g @plugin 'tmux-plugins/tpm'
  21. set -g @plugin 'tmux-plugins/tmux-sensible'
  22. set -g @plugin 'sainnhe/tmux-fzf'
  23. set -g @plugin 'christoomey/vim-tmux-navigator'
  24. set -g @plugin 'jimeh/tmuxifier'
  25. set -g @plugin 'joshmedeski/tmux-nerd-font-window-name'
  26. # set -g @plugin 'dracula/tmux'
  27.  
  28. # dracula
  29. # set -g @dracula-show-left-icon session
  30. # set -g @dracula-battery-label "Battery"
  31. # set -g @dracula-plugins "cpu-usage ram-usage battery"
  32.  
  33. # Other examples:
  34. # set -g @plugin 'github_username/plugin_name'
  35. # set -g @plugin 'github_username/plugin_name#branch'
  36. # set -g @plugin '[email protected]:user/plugin'
  37. # set -g @plugin '[email protected]:user/plugin'
  38.  
  39. # Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
  40. run '~/.tmux/plugins/tpm/tpm'
  41.  
  42. # import
  43. source ~/.config/tmux/statusline.conf
  44. source ~/.config/tmux/utility.conf
  45.  
captcha