From 1ae217351e4fe556e3c3551ce48d32dd7fa6038a Mon Sep 17 00:00:00 2001 From: Randall Winkhart Date: Wed, 7 Jan 2026 20:04:15 -0500 Subject: [PATCH] Update zed config --- applications.go | 86 +++++++++++++++++++++++-------------------------- go.mod | 6 ++-- go.sum | 4 +++ 3 files changed, 48 insertions(+), 48 deletions(-) diff --git a/applications.go b/applications.go index abfa8f4..510037f 100644 --- a/applications.go +++ b/applications.go @@ -268,86 +268,82 @@ augroup END ` const zed = `{ - // rwinkhart/cachyos-postinstall-helper 09/28/2025 + // rwinkhart/cachyos-postinstall-helper 01/07/2026 // AI Settings - "telemetry": { - "metrics": false, - "diagnostics": false - }, "edit_predictions": { "mode": "subtle", - "enabled_in_text_threads": false + "enabled_in_text_threads": false, }, "show_edit_predictions": true, - "agent": { - "default_profile": "ask", - "default_model": { - "provider": "copilot_chat", - "model": "claude-sonnet-4" - } - }, - "features": { - "edit_prediction_provider": "copilot" - }, + // Extension settings + "icon_theme": "JetBrains New UI Icons (Light)", + "theme": "Dracula", // General Settings - "minimap": { - "show": "always" + "telemetry": { + "metrics": true, + "diagnostics": true, }, - "icon_theme": "JetBrains New UI Icons (Dark)", + "terminal": { + "shell": { + "program": "zsh", + }, + }, + "git": { + "inline_blame": { + "enabled": false, + }, + }, + "indent_guides": { + "enabled": true, + "line_width": 4, + "active_line_width": 8, + "coloring": "indent_aware", + "background_coloring": "disabled", + }, + "colorize_brackets": true, + "vim_mode": false, "middle_click_paste": false, "base_keymap": "VSCode", "autosave": "off", - "theme": "Gruvbox Dark", "ui_font_size": 14, "buffer_font_size": 18, "auto_update": false, - "terminal": { - "shell": { - "program": "zsh" - } - }, "tab_size": 4, + "use_autoclose": false, + "use_auto_surround": false, "preferred_line_length": 120, - "git": { - "inline_blame": { - "enabled": false - } - }, // Language-specific Settings "languages": { "Python": { - "soft_wrap": "preferred_line_length" + "soft_wrap": "preferred_line_length", }, "Go": { - "hard_tabs": true + "hard_tabs": true, }, - "JavaScript": { - "format_on_save": "off" - }, - "CSS": { - "format_on_save": "off" - } }, // De-clutter UI "tab_bar": { - "show_nav_history_buttons": false + "show_nav_history_buttons": false, }, "search": { - "button": false + "button": false, }, "title_bar": { - "show_branch_name": false + "show_branch_name": false, }, "notification_panel": { - "button": false + "button": false, }, "collaboration_panel": { - "button": false + "button": false, }, "git_panel": { - "button": false - } + "button": true, + }, + "outline_panel": { + "button": false, + }, } ` diff --git a/go.mod b/go.mod index 5c56945..d8b1b5d 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module cachy-post -go 1.25.1 +go 1.25.5 require ( github.com/moby/sys/mountinfo v0.7.2 @@ -8,6 +8,6 @@ require ( ) require ( - golang.org/x/sys v0.33.0 // indirect - golang.org/x/term v0.32.0 // indirect + golang.org/x/sys v0.39.0 // indirect + golang.org/x/term v0.38.0 // indirect ) diff --git a/go.sum b/go.sum index 0027975..06bec0e 100644 --- a/go.sum +++ b/go.sum @@ -4,5 +4,9 @@ github.com/rwinkhart/go-boilerplate v0.1.0 h1:EzlVj6R7Bxtl79Nl7R5zRcg6s+Cf2FAqGI github.com/rwinkhart/go-boilerplate v0.1.0/go.mod h1:cnzIF45I0FCOvE4YIB+26pLCUx2kWyY2llKYZruNaRY= golang.org/x/sys v0.33.0 h1:q3i8TbbEz+JRD9ywIRlyRAQbM0qF7hu24q3teo2hbuw= golang.org/x/sys v0.33.0/go.mod h1:BJP2sWEmIv4KK5OTEluFJCKSidICx8ciO85XgH3Ak8k= +golang.org/x/sys v0.39.0 h1:CvCKL8MeisomCi6qNZ+wbb0DN9E5AATixKsvNtMoMFk= +golang.org/x/sys v0.39.0/go.mod h1:OgkHotnGiDImocRcuBABYBEXf8A9a87e/uXjp9XT3ks= golang.org/x/term v0.32.0 h1:DR4lr0TjUs3epypdhTOkMmuF5CDFJ/8pOnbzMZPQ7bg= golang.org/x/term v0.32.0/go.mod h1:uZG1FhGx848Sqfsq4/DlJr3xGGsYMu/L5GW4abiaEPQ= +golang.org/x/term v0.38.0 h1:PQ5pkm/rLO6HnxFR7N2lJHOZX6Kez5Y1gDSJla6jo7Q= +golang.org/x/term v0.38.0/go.mod h1:bSEAKrOT1W+VSu9TSCMtoGEOUcKxOKgl3LE5QEF/xVg=