feat: updated zed

This commit is contained in:
Nick 2025-10-03 16:18:55 -05:00
parent 60ac77ef20
commit 5415bd0e5d
4 changed files with 87 additions and 2 deletions

View file

@ -30,7 +30,7 @@
haskell-language-server = {
initialization_options = {
haskell = {
formattingProvider = "ormolu";
formattingProvider = "fourmolu";
};
};
};

View file

@ -3,6 +3,7 @@
flake,
lib,
pkgs,
nixpkgs-stable,
...
}:
let
@ -23,10 +24,15 @@ in
{
programs.zed-editor = {
enable = true;
# package = packagePath;
package = packagePath;
extraPackages = extraPackagesPath;
extensions = extensionsPath;
userKeymaps = userKeymapsPath;
userSettings = userSettingsPath;
};
home.packages = builtins.attrValues {
inherit (pkgs)
zed-discord-presence
;
};
}