dotfiles/.config/zed/settings.json
Ahmad Ansori Palembani 0a95ccd9a5
chore(zed): Adjust keymaps to match nvim
Probably gonna put this on halt for now as I notice zed doesn't have
TODO/FIXME highlighting yet.
2025-05-29 13:44:47 +07:00

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"
*/
}
}