42 lines
979 B
JSON
42 lines
979 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)
|
|
{
|
|
// GENERAL SETTINGS
|
|
"outline_panel": {
|
|
"dock": "right"
|
|
},
|
|
"vim_mode": true,
|
|
// UI SETTINGS
|
|
"ui_font_size": 16,
|
|
"ui_font_family": "Iosevka Sans Ligless",
|
|
// BUFFER SETTINGS
|
|
"buffer_font_size": 16,
|
|
"buffer_font_family": "Iosevka Mono Ligless",
|
|
// BEHAVIOR SETTINGS
|
|
"languages": {
|
|
"Java": {
|
|
"formatter": {
|
|
"external": {
|
|
"command": "clang-format",
|
|
"arguments": ["--style=file", "--assume-filename={buffer_path}"]
|
|
}
|
|
},
|
|
"format_on_save": "on"
|
|
}
|
|
},
|
|
"wrap_guides": [80],
|
|
// MISC OTHER
|
|
"theme": {
|
|
"mode": "system",
|
|
"light": "Gruvbox Light",
|
|
"dark": "Gruvbox Dark"
|
|
}
|
|
}
|
|
|