Video není dostupné.
Omlouváme se.

TMUX Usage Walkthrough and Configuration Settings for Ethical Hackers

Sdílet
Vložit
  • čas přidán 17. 08. 2024
  • TMUX Configuration File Settings:
    Remap prefix key to ctrl a instead of ctrl b
    set -g prefix C-a
    bind C-a send-prefix
    unbind C-b
    unbind keys
    unbind %
    unbind '"'
    History and renaming
    set -g history-limit 15000
    set -g allow-rename off
    Search mode Vi (default is emacs)
    set-window-option -g mode-keys vi
    Changing split window keys and retain the current working directory on split
    bind \\ split-window -h -c '#{pane_current_path}' # split panes horizontal
    bind - split-window -v -c '#{pane_current_path}' # split panes vertically
    Join windows
    bind-key j command-prompt -p "join pane from:" "join-pane -s '%%'"
    bind-key s command-prompt -p "send pane to:" "join-pane -t '%%'"
    List of plugins
    set -g @plugin 'tmux-plugins/tpm'
    set -g @plugin 'tmux-plugins/tmux-sensible'
    set -g @plugin 'tmux-plugins/tmux-logging'
    Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
    run '~/.tmux/plugins/tpm/tpm'
    TMUX Plugin Github pages:
    github.com/tmu...
    github.com/tmu...
    00:00 Introduction
    00:33 2 Major TMUX Benefits
    02:47 Prerequisites To Follow Along
    03:57 Usage and Configuration Walkthrough
    11:24 Conclusion and Flowers

Komentáře •