Tmux
This will speed up you testing capability.
Installing tmux
# By default it is installed.
sudo apt install tmuxConfiguring tmux for improved and efficient usage.
# Bindings for creating new windows and splits
bind-key c new-window -c "#{pane_current_path}"
bind-key % split-window -h -c "#{pane_current_path}"
bind-key '"' split-window -v -c "#{pane_current_path}"
# Set history limit for scrolling
set-option -g history-limit 100000
# Enable mouse support and set vi keys
set-option -g mouse on
set-option -g mode-keys vi
# Copy to clipboard on mouse selection
bind-key -T copy-mode-vi MouseDragEnd1Pane send -X copy-pipe-and-cancel "xclip -selection clipboard"
Common and useful command
Last updated
