dotfiles/home/modules/gui/apps/ide/zed/config/userSettings/default.nix

43 lines
788 B
Nix
Raw Normal View History

2025-01-14 16:17:42 -06:00
{
flake,
lib,
pkgs,
...
2025-01-18 03:50:54 -06:00
}:
let
2025-01-14 16:17:42 -06:00
configPath = ./config;
assistantPath = import (configPath + /assistant);
interfacePath = import (configPath + /interface) {
inherit
flake
;
};
languagesPath = import (configPath + /languages);
lspPath = import (configPath + /lsp);
terminalPath = import (configPath + /terminal) {
inherit
flake
;
};
2025-01-18 03:50:54 -06:00
experimentalPath = import (configPath + /theme) {
inherit
flake
;
};
2025-01-14 16:17:42 -06:00
gitPath = import (configPath + /git);
2025-01-19 23:40:54 -06:00
miscPath = import (configPath + /misc) { inherit lib pkgs; };
2025-01-14 16:17:42 -06:00
in
2025-01-18 03:50:54 -06:00
{
assistant = assistantPath;
git = gitPath;
languages = languagesPath;
lsp = lspPath;
terminal = terminalPath;
experimental.theme_overrides = experimentalPath;
}
// interfacePath
2025-01-19 23:40:54 -06:00
// miscPath