Collection of Awesome Software and Configs

less than 1 minute read

MacOS

Unix-like Systems

  • Tmux
    • Tmux Plugin Manager

      With .tmux.conf set as following:

      setw -g mouse on
      set -g status-right '#{prefix_highlight} | %a %Y-%m-%d %H:%M'
      set -g @continuum-restore 'on'
      set -g @resurrect-capture-pane-contents 'on'
      set -g @emulate-scroll-for-no-mouse-alternate-buffer "on"
      
      # List of plugins
      set -g @plugin 'tmux-plugins/tpm'
      set -g @plugin 'tmux-plugins/tmux-sensible'
      set -g @plugin 'nhdaly/tmux-better-mouse-mode'
      set -g @plugin 'tmux-plugins/tmux-prefix-highlight'
      set -g @plugin 'tmux-plugins/tmux-yank'
      set -g @plugin 'tmux-plugins/tmux-logging'
      set -g @plugin 'tmux-plugins/tmux-resurrect'
      set -g @plugin 'tmux-plugins/tmux-continuum'
      
      
      # Other examples:
      # set -g @plugin 'github_username/plugin_name'
      # set -g @plugin '[email protected]/user/plugin'
      # set -g @plugin '[email protected]/user/plugin'
      
      # Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
      run '~/.tmux/plugins/tpm/tpm'
      
  • Vim
  • Application Container/Lightweight Virtualization: Docker

Updated: