move shell scripts and zsh and add fav vscode themes

This commit is contained in:
writer 2024-10-16 14:34:03 +09:00
parent 40077637ce
commit e6794a8954
43 changed files with 55 additions and 34 deletions

View file

@ -1,8 +1,8 @@
## Basic Tmux Usage
## basic tmux usage
<br>
* Starting a new (named session):
* starting a new (named session):
```
tmux new -s my_session
@ -11,12 +11,12 @@ tmux new -s my_session
<br>
* Detach the session with `Ctrl-b + d`.
* detach the session with `Ctrl-b + d`.
<br>
* List sessions with:
* list sessions with:
```
tmux ls
@ -25,7 +25,7 @@ tmux ls
<br>
* Re-attach a session:
* re-attach a session:
```
tmux attach-session -t my_session
@ -34,7 +34,7 @@ tmux attach-session -t my_session
<br>
* Reload a tmux config file:
* reload a tmux config file:
```
tmux source-file ~/.tmux.conf
@ -43,7 +43,7 @@ tmux source-file ~/.tmux.conf
<br>
* Kill tmux
* kill tmux
```
tmux kill-server