Probably gonna put this on halt for now as I notice zed doesn't have TODO/FIXME highlighting yet.
37 lines
855 B
JSON
37 lines
855 B
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)
|
|
{
|
|
"icon_theme": "Material Icon Theme",
|
|
"ui_font_size": 16,
|
|
"buffer_font_size": 12,
|
|
"theme": {
|
|
"mode": "system",
|
|
"light": "One Light",
|
|
"dark": "Ayu Dark"
|
|
},
|
|
"vim_mode": true,
|
|
"ui_font_family": "Google Sans",
|
|
"buffer_font_family": "Iosevka Nerd Font",
|
|
"languages": {
|
|
"kotlin": {
|
|
"language_servers": ["kotlin-language-server"]
|
|
}
|
|
},
|
|
// AI stuff
|
|
"features": {
|
|
"edit_prediction_provider": "supermaven"
|
|
},
|
|
"agent": {
|
|
/*
|
|
"enabled": false,
|
|
"button": false,
|
|
"version": "1"
|
|
*/
|
|
}
|
|
}
|