mirror of
https://github.com/rwinkhart/cachyos-postinstall-helper.git
synced 2026-09-05 16:47:32 -04:00
Update zed config
This commit is contained in:
+41
-45
@@ -268,86 +268,82 @@ augroup END
|
|||||||
`
|
`
|
||||||
|
|
||||||
const zed = `{
|
const zed = `{
|
||||||
// rwinkhart/cachyos-postinstall-helper 09/28/2025
|
// rwinkhart/cachyos-postinstall-helper 01/07/2026
|
||||||
|
|
||||||
// AI Settings
|
// AI Settings
|
||||||
"telemetry": {
|
|
||||||
"metrics": false,
|
|
||||||
"diagnostics": false
|
|
||||||
},
|
|
||||||
"edit_predictions": {
|
"edit_predictions": {
|
||||||
"mode": "subtle",
|
"mode": "subtle",
|
||||||
"enabled_in_text_threads": false
|
"enabled_in_text_threads": false,
|
||||||
},
|
},
|
||||||
"show_edit_predictions": true,
|
"show_edit_predictions": true,
|
||||||
"agent": {
|
// Extension settings
|
||||||
"default_profile": "ask",
|
"icon_theme": "JetBrains New UI Icons (Light)",
|
||||||
"default_model": {
|
"theme": "Dracula",
|
||||||
"provider": "copilot_chat",
|
|
||||||
"model": "claude-sonnet-4"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"features": {
|
|
||||||
"edit_prediction_provider": "copilot"
|
|
||||||
},
|
|
||||||
// General Settings
|
// General Settings
|
||||||
"minimap": {
|
"telemetry": {
|
||||||
"show": "always"
|
"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,
|
"middle_click_paste": false,
|
||||||
"base_keymap": "VSCode",
|
"base_keymap": "VSCode",
|
||||||
"autosave": "off",
|
"autosave": "off",
|
||||||
"theme": "Gruvbox Dark",
|
|
||||||
"ui_font_size": 14,
|
"ui_font_size": 14,
|
||||||
"buffer_font_size": 18,
|
"buffer_font_size": 18,
|
||||||
"auto_update": false,
|
"auto_update": false,
|
||||||
"terminal": {
|
|
||||||
"shell": {
|
|
||||||
"program": "zsh"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"tab_size": 4,
|
"tab_size": 4,
|
||||||
|
"use_autoclose": false,
|
||||||
|
"use_auto_surround": false,
|
||||||
"preferred_line_length": 120,
|
"preferred_line_length": 120,
|
||||||
"git": {
|
|
||||||
"inline_blame": {
|
|
||||||
"enabled": false
|
|
||||||
}
|
|
||||||
},
|
|
||||||
// Language-specific Settings
|
// Language-specific Settings
|
||||||
"languages": {
|
"languages": {
|
||||||
"Python": {
|
"Python": {
|
||||||
"soft_wrap": "preferred_line_length"
|
"soft_wrap": "preferred_line_length",
|
||||||
},
|
},
|
||||||
"Go": {
|
"Go": {
|
||||||
"hard_tabs": true
|
"hard_tabs": true,
|
||||||
},
|
},
|
||||||
"JavaScript": {
|
|
||||||
"format_on_save": "off"
|
|
||||||
},
|
|
||||||
"CSS": {
|
|
||||||
"format_on_save": "off"
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
// De-clutter UI
|
// De-clutter UI
|
||||||
"tab_bar": {
|
"tab_bar": {
|
||||||
"show_nav_history_buttons": false
|
"show_nav_history_buttons": false,
|
||||||
},
|
},
|
||||||
"search": {
|
"search": {
|
||||||
"button": false
|
"button": false,
|
||||||
},
|
},
|
||||||
"title_bar": {
|
"title_bar": {
|
||||||
"show_branch_name": false
|
"show_branch_name": false,
|
||||||
},
|
},
|
||||||
"notification_panel": {
|
"notification_panel": {
|
||||||
"button": false
|
"button": false,
|
||||||
},
|
},
|
||||||
"collaboration_panel": {
|
"collaboration_panel": {
|
||||||
"button": false
|
"button": false,
|
||||||
},
|
},
|
||||||
"git_panel": {
|
"git_panel": {
|
||||||
"button": false
|
"button": true,
|
||||||
}
|
},
|
||||||
|
"outline_panel": {
|
||||||
|
"button": false,
|
||||||
|
},
|
||||||
}
|
}
|
||||||
`
|
`
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
module cachy-post
|
module cachy-post
|
||||||
|
|
||||||
go 1.25.1
|
go 1.25.5
|
||||||
|
|
||||||
require (
|
require (
|
||||||
github.com/moby/sys/mountinfo v0.7.2
|
github.com/moby/sys/mountinfo v0.7.2
|
||||||
@@ -8,6 +8,6 @@ require (
|
|||||||
)
|
)
|
||||||
|
|
||||||
require (
|
require (
|
||||||
golang.org/x/sys v0.33.0 // indirect
|
golang.org/x/sys v0.39.0 // indirect
|
||||||
golang.org/x/term v0.32.0 // indirect
|
golang.org/x/term v0.38.0 // indirect
|
||||||
)
|
)
|
||||||
|
|||||||
@@ -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=
|
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 h1:q3i8TbbEz+JRD9ywIRlyRAQbM0qF7hu24q3teo2hbuw=
|
||||||
golang.org/x/sys v0.33.0/go.mod h1:BJP2sWEmIv4KK5OTEluFJCKSidICx8ciO85XgH3Ak8k=
|
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 h1:DR4lr0TjUs3epypdhTOkMmuF5CDFJ/8pOnbzMZPQ7bg=
|
||||||
golang.org/x/term v0.32.0/go.mod h1:uZG1FhGx848Sqfsq4/DlJr3xGGsYMu/L5GW4abiaEPQ=
|
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=
|
||||||
|
|||||||
Reference in New Issue
Block a user