Files
dots/.config/zed/settings.json

56 lines
1.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 the `zed: Open Default Settings` command
// from the command palette
{
"language_models": {
"ollama": {
"api_url": "http://localhost:11434"
}
},
"ui_font_size": 16,
"buffer_font_size": 16,
"theme": {
"mode": "system",
"light": "Catppuccin Latte",
"dark": "Gruvbox Dark"
},
"telemetry": {
"diagnostics": false,
"metrics": false
},
"base_keymap": "VSCode",
"format_on_save": "on",
"autosave": "on_window_change",
"vim_mode": false,
"assistant": {
"default_model": {
"provider": "ollama",
"model": "mistral:7b-instruct-v0.3-q4_K_S"
},
"version": "2",
"provider": null
},
"lsp": {
"rust-analyzer": {
"initialization_options": {
"check": {
"command": "clippy" // rust-analyzer.check.command (default: "check")
}
}
},
"eslint": {
"settings": {
"rulesCustomizations": [
// set all eslint errors/warnings to show as warnings
{ "rule": "*", "severity": "warn" }
]
}
}
}
}