From 47daf3b7601e69474c5b6a45c1df6575922da426 Mon Sep 17 00:00:00 2001 From: Drewry Pope Date: Tue, 31 Dec 2024 03:08:52 -0600 Subject: [PATCH] update --- doc/zed.settings.json | 54 +++++++++++++++++++++++++++++++++++-------- 1 file changed, 45 insertions(+), 9 deletions(-) diff --git a/doc/zed.settings.json b/doc/zed.settings.json index 4889ab37..a50ca13d 100644 --- a/doc/zed.settings.json +++ b/doc/zed.settings.json @@ -1,11 +1,3 @@ -// Zed settings -// -// For information on how to configure Zed, see the Zed -// documentation: https://zed.dev/docs/configuring-zed -// -// To see all of Zed's default settings without changing your -// custom settings, run `zed: open default settings` from the -// command palette { "assistant": { "default_model": { @@ -23,5 +15,49 @@ "dark": "Base16 Windows High Contrast" }, "tab_size": 2, - "use_autoclose": false + "use_autoclose": false, + "relative_line_numbers": true, + "vertical_scroll_margin": 1, + "inlay_hints": { + "enabled": true, + // "show_background": false, + "edit_debounce_ms": 0, + "scroll_debounce_ms": 0 + }, + "inline_blame": { + "enabled": true, + "delay_ms": 0, + "show_commit_summary": true, + "min_column": 0 + }, + "features": { + // "inline_completion_provider": "supermaven" + "inline_completion_provider": "copilot" + }, + "auto_update": false, + "terminal": { + "line_height": "standard", + "detect_venv": "off" + }, + "lsp": { + "nil": { + "settings": { + "formatting": { + "command": ["nixfmt", "-s", "-v"] + } + } + } + }, + "project_panel": { + "default_width": 200, + "dock": "right", + "file_icons": false, + "folder_icons": false, + "git_status": false, + "indent_size": 0 + }, + "tabs": { + "file_icons": false, + "git_status": true + } }