Files
dotfiles/zed/settings.json
xfy 460ef329d9 add zed config
move old configs
2024-11-05 09:41:29 +08:00

113 lines
2.2 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 (Blur)"
},
"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
},
// "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"
]
}
]
}
]
}