48 lines
1.0 KiB
JSON
48 lines
1.0 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 the `open default settings` command
|
|
// from the command palette or from `Zed` application menu.
|
|
{
|
|
"assistant": {
|
|
"default_model": {
|
|
"provider": "ollama",
|
|
"model": "mistral:7b"
|
|
},
|
|
"version": "2"
|
|
},
|
|
"base_keymap": "VSCode",
|
|
"theme": "Gruvbox Material",
|
|
"telemetry": {
|
|
"metrics": false
|
|
},
|
|
"vim_mode": true,
|
|
"buffer_font_family": "0xProto",
|
|
"buffer_font_size": 16,
|
|
"ui_font_size": 16,
|
|
"tab_size": 4,
|
|
"tabs": {
|
|
"close_position": "right",
|
|
"file_icons": true,
|
|
"git_status": true
|
|
},
|
|
"format_on_save": "off",
|
|
"language_models": {
|
|
"ollama": {
|
|
"api_url": "http://127.0.0.1:11434"
|
|
}
|
|
},
|
|
"terminal": {
|
|
"shell": {
|
|
"with_arguments": {
|
|
"program": "/run/current-system/sw/bin/bash",
|
|
"args": []
|
|
}
|
|
},
|
|
"blinking": "on"
|
|
}
|
|
}
|