Compare commits
2 Commits
13354fb6bf
...
14d832f7be
Author | SHA1 | Date |
---|---|---|
Peder Bergebakken Sundt | 14d832f7be | |
Peder Bergebakken Sundt | 6f02b1df41 |
|
@ -83,9 +83,11 @@ in {
|
||||||
|
|
||||||
home.sessionVariables = mkIf cfg.trueColor { MICRO_TRUECOLOR = "1"; };
|
home.sessionVariables = mkIf cfg.trueColor { MICRO_TRUECOLOR = "1"; };
|
||||||
|
|
||||||
|
xdg.configFile."micro/settings.json".force = true; # TODO: this should be an option
|
||||||
xdg.configFile."micro/settings.json".source =
|
xdg.configFile."micro/settings.json".source =
|
||||||
jsonFormat.generate "micro-settings" cfg.settings;
|
jsonFormat.generate "micro-settings" cfg.settings;
|
||||||
|
|
||||||
|
xdg.configFile."micro/bindings.json".force = true; # TODO: this should be an option
|
||||||
xdg.configFile."micro/bindings.json".source =
|
xdg.configFile."micro/bindings.json".source =
|
||||||
jsonFormat.generate "micro-bindings" cfg.bindings;
|
jsonFormat.generate "micro-bindings" cfg.bindings;
|
||||||
|
|
||||||
|
|
|
@ -5,6 +5,7 @@
|
||||||
imports = [
|
imports = [
|
||||||
./lxterminal
|
./lxterminal
|
||||||
./pulsar
|
./pulsar
|
||||||
|
./zed
|
||||||
];
|
];
|
||||||
|
|
||||||
# TODO: doesn't work?
|
# TODO: doesn't work?
|
||||||
|
|
|
@ -0,0 +1,15 @@
|
||||||
|
{ lib, pkgs, ... }:
|
||||||
|
{
|
||||||
|
|
||||||
|
home.shellAliases.atom = lib.mkDefault "zed";
|
||||||
|
|
||||||
|
home.packages = with pkgs; [
|
||||||
|
unstable.zed-editor
|
||||||
|
];
|
||||||
|
|
||||||
|
# TODO:
|
||||||
|
#.config/zed/keymap.json
|
||||||
|
#.config/zed/settings.json
|
||||||
|
#.config/zed/themes
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue