201 private links
Away to fix it:
In .bashrc or .bash_profile : export TERM=xterm-256color
In .vimrc :
syntax enable
colorscheme YOUR_COLORSCHEME_NAME
set termguicolors
Using Tmuxinator 🥰
“Oui mais tu peux configurer un script sh pour quand tu lances tmux toussa toussa”. Oui, j’ai pas ton temps, frère. Je suis là pour être productive et botter des culs avec mes nouvelles Doc Martens.
😎
Et l'autre manière est de scripter tout cela : un exemple de home.lord.
Wow c'est complet et propre. Je suis en cours de lecture :)
Memo about basics
Outside tmux with tmux
or inside with ^b:
- new -s
- kill-server : kill all sessions
- kill-session -t
- kill-session -t
Inside tmux with ^b
Sessions
- s : view sessions
- $ : rename current session
- tmux rename-sessions <-t session-name>
- tmux rename-sessions <-t session-name>
- d : exit session (detach)
Windows
- c : create window
- & : kill current window
- , : rename current window
-
: go to the specified window (through number id) - n : go to next window
- p : go to previous window
Panes
- % : split vertically
- " : split horizontally
- x : close current pane
- ↑ / ↓ / ← / → : toggle between panes
Prendre en main Tmux et voir les bases.
Simple
La base ^b
avec :
"
— split pane horizontally.%
— split pane vertically.arrow key
— switch pane.Hold Ctrl+b
, don’t release it and hold one of the arrow keys — resize pane.c
— (c)reate a new window.n
— move to the (n)ext window.p
— move to the (p)revious window.,
— rename the window
Other thing worth knowing is that scrolling is enabled by pressing Ctrl+b PgUp/PgDown
.
When in copy mode, you can use PgUp/PgDown
and arrow keys
to scroll through the terminal contents. To (q)uit the copy mode, simply press the q
key.
Pour quitter tmux :
^d
- commande
exit
^b
puis:kill-session
pour fermer toutes les fenêtres et panneaux
Un mémo sur les commandes de tmux.
Il est complet pour une utilisation habituelle.