Most people don’t realize the USDS was literally renamed DOGE. They took one of the highest achieving technical organizations where tech veterans from the private sector would take a paycut to come to work in the federal government to act as an internal consulting group inside the GSA (General Services Administration) for other federal departments. Elon fired everyone and hired a bunch of political lackeys. It was literally a crown jewel and they renamed it for a meme.
notpeter
u/notpeter
You should ask them to whitelist safe.duckduckgo.com. When using that hostname duckduckgo forces SafeSearch to strict for all queries.
I believe the only way to do this is if you clone each extension repo and install them as dev extensions. This is because although you can pin to an extension version using […] Install Previous Version, you can only pin previous versions, not the newest. There’s a discussion.
The bigger issue is most extensions automatically download the latest LSP versions from github/npm. So you’ll also want to manually install LSPs in your path so worktree.which can find them and the extension will skip auto-downloading missing LSPs (which works with /most/ extensions). There’s an issue.
Zed has word completions, by default they are only used as a fallback when there is no LSP available. But you can enable them always if you want:
{
"completions": {
"words": "enabled",
}
}
You can also nest this under languages.svelte or whatever to make it language specific. Personally I hate this sort of thing, but to each their own.