dotfiles/.config/zed/settings.json

39 lines
843 B
JSON
Raw Permalink Normal View History

2024-07-25 08:28:53 +02:00
// 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.
{
2024-09-17 07:48:45 +02:00
"assistant": {
"default_model": {
"provider": "ollama",
"model": "llama3.1:latest"
},
"version": "2"
},
2024-09-26 10:58:37 +02:00
"relative_line_numbers": true,
"vim_mode": true,
"ui_font_size": 15,
2024-08-19 06:16:50 +02:00
"buffer_font_size": 14,
2024-07-25 08:28:53 +02:00
"theme": {
"mode": "system",
"light": "One Light",
2024-09-26 10:58:37 +02:00
"dark": "Exquisite Blue (Monokai) - II"
2024-07-25 08:28:53 +02:00
},
"file_scan_exclusions": [
2024-08-05 04:43:41 +02:00
".idea/",
".git/",
".code/",
2024-07-25 08:28:53 +02:00
"**/.run",
"**/__pycache__"
2024-08-19 06:16:50 +02:00
],
"languages": {
"HTML": {
"format_on_save": "off"
}
}
2024-07-25 08:28:53 +02:00
}