blob: 14f7195c2d9b8fca09c25a70ed8704722b651bd6 (
plain) (
tree)
|
|
{lib, config, ...}: {
options.zed.enable = lib.mkEnableOption "Zed editor's config";
config = lib.mkIf config.zed.enable {
programs.zed-editor = {
enable = true;
userSettings = {
telemetry = {
metrics = false;
};
ui_font_size = 18;
buffer_font_size = 18;
vim_mode = false;
format_on_save = "off";
hard_tabs = false;
tab_size = 2;
theme = {
mode = "system";
light = "Gruvbox Dark Soft";
dark = "Gruvbox Dark Soft";
};
terminal = {
shell = {
program = "zsh";
};
cursor_shape = "bar";
};
};
};
};
}
|