mirror of
https://github.com/DefectingCat/dotfiles
synced 2025-07-15 08:41:36 +00:00
124 lines
2.6 KiB
JSON
124 lines
2.6 KiB
JSON
// 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)
|
|
{
|
|
"features": {
|
|
"inline_completion_provider": "supermaven"
|
|
},
|
|
"collaboration_panel": {
|
|
"dock": "right"
|
|
},
|
|
"terminal": {
|
|
"env": {
|
|
"EDITOR": "zed"
|
|
}
|
|
},
|
|
"language_models": {
|
|
"ollama": {
|
|
"api_url": "http://localhost:11434"
|
|
}
|
|
},
|
|
"outline_panel": {
|
|
"dock": "right"
|
|
},
|
|
"assistant": {
|
|
"default_model": {
|
|
"provider": "ollama",
|
|
"model": "llama3.1:latest"
|
|
},
|
|
"dock": "right",
|
|
"version": "2"
|
|
},
|
|
"project_panel": {
|
|
"dock": "right"
|
|
},
|
|
"vim_mode": true,
|
|
"relative_line_numbers": true,
|
|
"ui_font_size": 16,
|
|
"buffer_font_size": 16,
|
|
"theme": {
|
|
"mode": "dark",
|
|
"light": "One Light",
|
|
"dark": "Catppuccin Mocha"
|
|
},
|
|
"base_keymap": "VSCode",
|
|
"buffer_font_family": "JetBrainsMono Nerd Font",
|
|
"tab_bar": {
|
|
"show": true,
|
|
"show_nav_history_buttons": true
|
|
},
|
|
"toolbar": {
|
|
"breadcrumbs": true,
|
|
"quick_actions": false
|
|
},
|
|
"preview_tabs": {
|
|
"enabled": false,
|
|
"enable_preview_from_file_finder": false,
|
|
"enable_preview_from_code_navigation": false
|
|
},
|
|
"tabs": {
|
|
"close_position": "right",
|
|
"file_icons": true,
|
|
"git_status": false
|
|
},
|
|
"git": {
|
|
"inline_blame": {
|
|
"enabled": false
|
|
}
|
|
},
|
|
"file_scan_exclusions": [
|
|
// "**/.git",
|
|
"**/.svn",
|
|
"**/.hg",
|
|
"**/CVS",
|
|
"**/.DS_Store",
|
|
"**/Thumbs.db",
|
|
"**/.classpath",
|
|
"**/.settings"
|
|
],
|
|
"languages": {
|
|
"Python": {
|
|
"language_servers": ["ruff"]
|
|
// Or, if there are other language servers you want to use with Python
|
|
// "language_servers": ["pyright", "ruff"]
|
|
}
|
|
},
|
|
// "proxy": "http://127.0.0.1:10809",
|
|
"ssh_connections": [
|
|
{
|
|
"host": "57",
|
|
"projects": [
|
|
{
|
|
"paths": ["~/Developer/show-client"]
|
|
},
|
|
{
|
|
"paths": ["~/Developer/show-client-multiple"]
|
|
},
|
|
{
|
|
"paths": ["~/Developer/gorra"]
|
|
},
|
|
{
|
|
"paths": ["~/Developer/site_operation_platform"]
|
|
},
|
|
{
|
|
"paths": ["~/Developer/show-client-v2"]
|
|
},
|
|
{
|
|
"paths": ["~/Developer/show-library"]
|
|
},
|
|
{
|
|
"paths": ["~/Developer/venus"]
|
|
},
|
|
{
|
|
"paths": ["~/Developer/react-draggable"]
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|