1
Fork 0

Got tmux to act the way I want on startup let's goooo

This commit is contained in:
Matei Adriel 2022-12-04 07:56:20 +01:00
parent 01ee066c62
commit 32b53a7fd6
21 changed files with 171 additions and 73 deletions
dotfiles/vscode-snippets/snippets/latex

View file

@ -12,7 +12,7 @@
"Absolute value": {
"prefix": "abs",
"description": "Absolute values",
"body": "|$1|$0"
"body": "\\abs{$1}$0"
},
"Lemma": {
"prefix": "lemma",
@ -285,5 +285,16 @@
"prefix": "integral",
"description": "Integral",
"body": "\\int $1 d${2:x}$0"
},
"Iff cases": {
"prefix": "ciff",
"description": "Prove an equivalence in both directions",
"body": [
"\\begin{enumerate}",
"\t\\item[$\\implies$]$1",
"\t\\item[$\\impliedby$]$2",
"\\end{enumerate}",
"$0"
]
}
}