this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

:sparkles: (Zed) updated configuration

+4 -13
+4 -13
home/zed/default.nix
··· 18 18 19 19 ## everything inside of these brackets are Zed options. 20 20 userSettings = { 21 - assistant = { 22 - enabled = true; 23 - version = "2"; 24 - default_model = { 25 - provider = "ollama"; 26 - model = "deepseek-r1:1.5b"; 27 - }; 28 - }; 29 - 30 21 node = { 31 22 path = lib.getExe pkgs.nodejs; 32 23 npm_path = lib.getExe' pkgs.nodejs "npm"; 33 24 }; 34 - 35 - hour_format = "hour24"; 36 25 auto_update = false; 37 26 terminal = { 38 27 alternate_scroll = "off"; ··· 53 42 button = false; 54 43 shell = "system"; 55 44 toolbar = { 56 - title = true; 45 + breadcrumbs = true; 57 46 }; 58 47 working_directory = "current_project_directory"; 59 48 }; ··· 82 71 soft_wrap = "editor_width"; 83 72 ui_font_size = 13; 84 73 buffer_font_size = 13; 85 - relative_line_numbers = true; 74 + relative_line_numbers = "wrapped"; 75 + buffer_font_family = "Departure Mono"; 76 + ui_font_family = "Departure Mono"; 86 77 }; 87 78 }; 88 79 }