feat: remade scripts to be simpler

This commit is contained in:
2026-03-28 22:26:19 +00:00
commit a39315d77c
24 changed files with 879 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
// Zed keymap
//
// For information on binding keys, see the Zed
// documentation: https://zed.dev/docs/key-bindings
//
// To see the default key bindings run `zed: open default keymap`
// from the command palette.
[
{
"context": "Workspace",
"bindings": {
// "shift shift": "file_finder::Toggle"
}
},
{
"context": "Editor",
"bindings": {
// "j k": ["workspace::SendKeystrokes", "escape"]
}
}
]
+35
View File
@@ -0,0 +1,35 @@
// 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 (cmd-shift-p / ctrl-shift-p)
{
"icon_theme": "Catppuccin Mocha",
"agent": {
"always_allow_tool_actions": true,
"default_profile": "write",
"default_model": {
"provider": "zed.dev",
"model": "claude-3-7-sonnet"
},
},
"telemetry": {
"metrics": false,
"diagnostics": false
},
"vim_mode": false,
"ui_font_size": 14,
"buffer_font_size": 14,
"theme": {
"mode": "system",
"light": "One Light",
"dark": "Min Dark (Blurred)"
},
"hover_popover_enabled": true,
"features": {
"edit_prediction_provider": "zed"
}
}
@@ -0,0 +1,35 @@
// 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 (cmd-shift-p / ctrl-shift-p)
{
"icon_theme": "Catppuccin Mocha",
"agent": {
"default_profile": "write",
"default_model": {
"provider": "zed.dev",
"model": "claude-sonnet-4"
},
"version": "2"
},
"telemetry": {
"metrics": false,
"diagnostics": false
},
"vim_mode": false,
"ui_font_size": 14,
"buffer_font_size": 14,
"theme": {
"mode": "system",
"light": "One Light",
"dark": "Min Dark (Blurred)"
},
"hover_popover_enabled": true,
"features": {
"edit_prediction_provider": "zed"
}
}