my system configurations ^-^
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat(helix): tinymist typst lsp

willow d1dfe52d 95885784

+15
+15
modules/shared/home/programs/tui/helix/default.nix
··· 38 38 nil = { 39 39 command = lib.getExe pkgs.nil; 40 40 }; 41 + tinymist = { 42 + command = lib.getExe pkgs.tinymist; 43 + config = { 44 + exportPdf = "onType"; 45 + outputPath = "$root/target/$dir/$name"; 46 + formatterMode = "typstyle"; 47 + formatterPrintWidth = 80; 48 + }; 49 + }; 41 50 42 51 markdown-oxide.command = lib.getExe pkgs.markdown-oxide; 43 52 }; ··· 73 82 name = "css"; 74 83 language-servers = ["css-lsp"]; 75 84 formatter = prettierd; 85 + } 86 + { 87 + name = "typst"; 88 + language-servers = ["tinymist"]; 89 + soft-wrap.enable = true; 90 + auto-format = true; 76 91 } 77 92 ]; 78 93 };