mirror of https://git.jolheiser.com/dotnix.git
parent
f90b77ba50
commit
8e64ccea7e
|
@ -8,6 +8,7 @@
|
||||||
./spotify.nix
|
./spotify.nix
|
||||||
./tiny.nix
|
./tiny.nix
|
||||||
./wezterm.nix
|
./wezterm.nix
|
||||||
|
./zed.nix
|
||||||
];
|
];
|
||||||
home = {
|
home = {
|
||||||
packages = with pkgs; [
|
packages = with pkgs; [
|
||||||
|
|
|
@ -0,0 +1,19 @@
|
||||||
|
{pkgs, ...}: {
|
||||||
|
home.packages = [pkgs.zed-editor];
|
||||||
|
xdg.configFile."zed/settings.json".text = builtins.toJSON {
|
||||||
|
buffer_font_family = "Monaspace Neon";
|
||||||
|
buffer_font_size = 16;
|
||||||
|
soft_wrap = "editor_width";
|
||||||
|
telemetry = {
|
||||||
|
diagnostics = false;
|
||||||
|
metrics = false;
|
||||||
|
};
|
||||||
|
terminal = {
|
||||||
|
font_family = "Monaspace Neon";
|
||||||
|
shell = {program = "nu";};
|
||||||
|
};
|
||||||
|
theme = "Catppuccin Mocha";
|
||||||
|
ui_font_size = 16;
|
||||||
|
vim_mode = false;
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in New Issue