tmux new [-s name] [cmd]
(:new
) - new session
tmux ls
(:ls
) - list sessionstmux switch [-t name]
(:switch
) - switches to an existing session
" ================================================================================================ | |
" = Extensions ===================================== | |
" ================================================================================================ | |
Plug 'tpope/vim-surround' | |
Plug 'preservim/nerdtree' | |
" ================================================================================================ | |
" = Basic settings ===================================== | |
" ================================================================================================ | |
set clipboard+=unnamed |
# ... your other config | |
bind-key -n M-3 run-shell 'toggle-tmux-popup' | |
# you can switch `M-3` to any keybindings you like. |
# Font configuration (changes require restart) | |
font: | |
normal: | |
family: Hack Nerd Font Mono | |
style: Regular | |
bold: | |
family: Hack Nerd Font Mono | |
style: Bold | |
italic: | |
family: Hack Nerd Font Mono |
#-------------------------------------------------------# | |
#-------------------------------------------------------# | |
# General settings ⬇️ ⬇️ ⬇️ | |
#-------------------------------------------------------# | |
#set mouse off/on - if off, forces you to use keyboard with prefix-[ | |
set -g mouse on | |
# start with window 1 (instead of 0) | |
set -g base-index 1 |