a dotfile but it's really big
0
fork

Configure Feed

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

helix: typst improvements

karitham 2b2c96ab a1907b88

+24
+24
modules/dev/editor/helix.nix
··· 221 221 command = "rubocop"; 222 222 args = [ "--lsp" ]; 223 223 }; 224 + tinymist = { 225 + command = "tinymist"; 226 + config = { 227 + formatterMode = "typstyle"; 228 + formatterProseWrap = true; 229 + formatterPrintWidth = 120; 230 + formatterIndentSize = 4; 231 + lint = { 232 + enabled = true; 233 + }; 234 + preview = { 235 + background.args = [ 236 + "--data-plane-host=127.0.0.1:23635" 237 + "--invert-colors=never" 238 + ]; 239 + browsing.args = [ 240 + "--data-plane-host=127.0.0.1:0" 241 + "--invert-colors=never" 242 + "--open" 243 + ]; 244 + }; 245 + }; 246 + }; 224 247 ruby-lsp = { 225 248 command = "ruby-lsp"; 226 249 config = { ··· 459 482 { 460 483 name = "typst"; 461 484 language-servers = [ "tinymist" ]; 485 + auto-format = true; 462 486 } 463 487 { 464 488 name = "markdown";