30 lines
782 B
JSON
30 lines
782 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)
|
|
{
|
|
"theme": {
|
|
"mode": "system",
|
|
"light": "Catppuccin Frappé",
|
|
"dark": "Catppuccin Mocha",
|
|
},
|
|
"icon_theme": {
|
|
"mode": "system",
|
|
"light": "Catppuccin Frappé",
|
|
"dark": "Catppuccin Mocha"
|
|
},
|
|
"auto_install_extensions": {
|
|
"catppuccin": true,
|
|
"catppuccin-icons": true,
|
|
"org-mode": true,
|
|
"lua": true,
|
|
"sql": true
|
|
},
|
|
"ui_font_size": 16,
|
|
"buffer_font_size": 15,
|
|
}
|