main
1{pkgs, ...}: {
2 Typst = {
3 userSettings = {
4 "tinymist.formatterMode" = "typstyle";
5 "[typst-code]"."editor.wordSeparators" = "`~!@#$%^&*()=+[{]}\\|;:'\",.<>/?";
6 "[typst]"."editor.unicodeHighlight.ambiguousCharacters" = false;
7 };
8
9 extensions = with pkgs.vscode-extensions; [
10 myriad-dreamin.tinymist # Typst LSP
11 tomoki1207.pdf # PDF Viewer
12 ];
13 };
14}