zed stuff

This commit is contained in:
Anthony Cicchetti 2024-09-24 15:17:55 -04:00
parent 9ecded3c29
commit 9a812e16e8
2 changed files with 86 additions and 17 deletions

View file

@ -1,6 +1,9 @@
[ [
{ {
"context": "VimControl", "context": "VimControl",
"bindings": { "space s": "pane::RevealInProjectPanel" } "bindings": {
"space s": "pane::RevealInProjectPanel",
"ctrl-r": "workspace::ToggleRightDock"
}
} }
] ]

View file

@ -1,32 +1,98 @@
// Zed settings
// //
// For information on how to configure Zed, see the Zed // For information on how to configure Zed, see the Zed
// documentation: https://zed.dev/docs/configuring-zed // documentation: https://zed.dev/docs/configuring-zed
// //
// To see all of Zed's default settings without changing your // To see all of Zed's default settings without changing your
// custom settings, run the `open default settings` command // custom settings, run `zed: open default settings` from the
// from the command palette or from `Zed` application menu. // command palette
{ {
"theme": "Kanagawa Wave",
"vim_mode": true, "vim_mode": true,
"ui_font_size": 16, "autosave": "on_focus_change",
"buffer_font_family": "Fantasque Sans Mono", "assistant": {
"default_model": {
"provider": "ollama",
"model": "qwen2.5-coder:latest"
},
"version": "2",
"enabled": true,
"button": true
},
"buffer_font_family": "Iosevka Custom",
"buffer_font_fallbacks": [
"Apple Color Emoji",
"Segoe UI Emoji",
"Noto Color Emoji"
],
"buffer_font_weight": 400,
"buffer_font_size": 16, "buffer_font_size": 16,
"assistant_v2": { "load_direnv": "shell_hook",
"enabled": true "ui_font_size": 16,
"theme": {
"mode": "system",
"light": "Kanagawa Wave",
"dark": "Kanagawa Wave"
},
"scrollbar": {
"show": "always"
},
"tab_bar": {
"show_nav_history_buttons": false
}, },
"tabs": { "tabs": {
"file_icons": true "file_icons": true,
"git_status": true
},
"toolbar": {
"breadcrumbs": true,
"quick_actions": true
},
"lsp": {
"rust-analyzer": {
"initialization_options": {
"check": {
"command": "clippy"
}
}
}
},
"always_treat_brackets_as_autoclosed": true,
"git": {
"git_gutter": "tracked_files",
"inline_blame": {
"enabled": true,
"delay_ms": 200
}
},
"indent_guides": {
"enabled": true,
"coloring": "indent_aware",
"background_coloring": "disabled"
},
"inlay_hints": {
"enabled": true,
"show_type_hints": true,
"show_parameter_hints": true
}, },
"languages": { "languages": {
"Typescript": { "Python": {
"language_servers": ["!typescript-language-server", "vtsls"] "format_on_save": "on",
"formatter": {
"external": {
"command": "black",
"args": ["--quiet", "-"]
}
}
} }
}, },
"assistant": { "preview_tabs": {
"version": "1", "enabled": true,
"provider": { "enable_preview_from_file_finder": true,
"name": "ollama", "enable_preview_from_code_navigation": true
"low_speed_timeout_in_seconds": 30 },
} "show_whitespaces": "all",
"telemetry": {
"diagnostics": false,
"metrics": false
} }
} }