Update zed settings

This commit is contained in:
Greg Hellings
2025-06-24 22:44:52 -05:00
parent 853562128e
commit aae3867944
+24
View File
@@ -46,11 +46,32 @@ in
installRemoteServer = true; installRemoteServer = true;
userKeymaps = [ userKeymaps = [
{ {
context = "Editor && (showing_completions || showing code actions)";
bindings = {
enter = "editor::Newline";
escape = "editor:Cancel";
};
} }
]; ];
userSettings = { userSettings = {
agent = {
default_model = {
provider = "copilot_chat";
model = "claude-4";
};
single_file_review = true;
version = "2";
};
baseKeymap = "VSCode"; baseKeymap = "VSCode";
buffer_font_size = 16; buffer_font_size = 16;
edit_predictions = {
copilot = {
proxy = null;
proxy_no_verify = null;
};
enable_in_text_threads = false;
mode = "subtle";
};
features = { features = {
copilot = true; copilot = true;
}; };
@@ -63,6 +84,9 @@ in
light = "Gruvbox Dark"; light = "Gruvbox Dark";
dark = "One Dark"; dark = "One Dark";
}; };
vim = {
toggle_relative_line_numbers = true;
};
vim_mode = true; vim_mode = true;
ui_font_size = 20; ui_font_size = 20;
}; };