Your one-stop-cake-shop for everything Freshly Baked has to offer

feat(pm/minion): set up for leptos

I'm doing some development using leptos. There are some recommended
options for rust-analyzer in its book:

https://book.leptos.dev/getting_started/leptos_dx.html

authored by a.starrysky.fyi and committed by a.starrysky.fyi 36ce6ae5 35e8c9b9

Changed files
+13
packetmix
homes
minion
+13
packetmix/homes/minion/helix.nix
··· 15 15 "ui.virtual.whitespace" = "surface0"; # The default catppuccin_latte theme displays rendered whitespace way too harshly... 16 16 }; 17 17 }; 18 + 19 + languages = { 20 + language = [ 21 + { 22 + name = "rust"; 23 + } 24 + ]; 25 + language-server.rust-analyzer.config = { 26 + cargo.allFeatures = true; 27 + diagnostics.disabled = [ "proc-macro-disabled" ]; 28 + procMacro.ignored.leptos_macro = [ "server" ]; 29 + }; 30 + }; 18 31 }; 19 32 }