tmux new -s session_name
creates a new tmux session named session_name
tmux attach -t session_name
attaches to an existing tmux session named session_name
Keywords: Java, JDK (Java Development Kit), MacOS, Homebrew, Specific Version
This how-to guide covers how to install different versions of the JDK on MacOS with Homebrew.
| # ==== Basic | |
| # Default shell | |
| set-option -g default-shell /bin/bash | |
| set-option -g default-command /bin/bash | |
| # Allow UTF-8 | |
| set-window-option -g utf8 on | |
| # Disable ESC delay | |
| set-option -s escape-time 0 | |
| # ==== Reload config (r) |