Signed-off-by: Christoph Schmatzler <christoph@tuist.dev>
This commit is contained in:
Christoph Schmatzler
2025-10-13 10:49:09 +02:00
parent ac91e17182
commit c6d86bb214
3 changed files with 0 additions and 60 deletions

View File

@@ -7,7 +7,6 @@
in { in {
imports = [ imports = [
./ghostty.nix ./ghostty.nix
./zed.nix
]; ];
home = { home = {

View File

@@ -1,58 +0,0 @@
{pkgs, ...}:
{
programs.zed-editor = {
enable = true;
extraPackages = [
pkgs.vtsls
];
userSettings = {
theme = {
mode = "system";
light = "One Light";
dark = "Catppuccin Mocha";
};
buffer_font_family = "Iosevka Nerd Font";
buffer_font_size = 17;
ui_font_family = "Iosevka Nerd Font";
ui_font_size = 16;
vim_mode = true;
ssh_connections = [
{
host = "tahani";
projects = [
{
paths = [
"/home/cschmatzler/Projects/Personal/shnosh"
];
}
];
}
];
format_on_save = "off";
buffer_font_features = {
calt = 0;
};
inlay_hints = {
enabled = true;
show_value_hints = true;
show_type_hints = true;
show_parameter_hints = true;
show_other_hints = true;
show_background = false;
edit_debounce_ms = 700;
scroll_debounce_ms = 50;
toggle_on_modifiers_press = {
control = false;
alt = false;
shift = false;
platform = false;
function = false;
};
};
telemetry = {
diagnostics = false;
metrics = false;
};
};
};
}

View File

@@ -5,7 +5,6 @@ in {
enable = true; enable = true;
ignores = ["*.swp"]; ignores = ["*.swp"];
userName = name; userName = name;
userEmail = "christoph@schmatzler.com";
lfs = { lfs = {
enable = true; enable = true;
}; };