zettelkasten

Search IconIcon to open search
Dark ModeDark Mode

VSCode

Favourite text editor; recommended.

H2 Snippets

To make latex citations less noisy

"editor.tokenColorCustomizations": {
	"textMateRules": [
		{
			"scope": [
				"keyword.control.cite.latex",
			],
			"settings": {
				"foreground": "#c9c9c9",
				"fontStyle": "bold"
			}
		},
		{
			"scope": [
				"constant.other.reference.citation.latex",
			],
			"settings": {
				"foreground": "#5d5d5d",
			}
		}
	],
}