mirror of
https://github.com/js0ny/dotfiles.git
synced 2025-12-21 16:53:00 +00:00
41 lines
1.1 KiB
JSON
41 lines
1.1 KiB
JSON
// $DOTFILES/tools/zed/settings.json
|
|
// Date: 2025-01-25
|
|
// Author: js0ny
|
|
// Description: Zed settings (jsonc)
|
|
|
|
// Location:
|
|
// GNU/Linux: ~/.config/zed/settings.json
|
|
// Windows: %APPDATA%\Zed\settings.json
|
|
// Linking: (link the whole directory)
|
|
// ln -sf $DOTFILES/tools/zed ~/.config/zed
|
|
//
|
|
// 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)
|
|
{
|
|
"edit_predictions": {
|
|
"disabled_globs": ["*.bean"],
|
|
"mode": "eager_preview",
|
|
"copilot": {
|
|
"proxy": null,
|
|
"proxy_no_verify": null
|
|
}
|
|
},
|
|
"base_keymap": "VSCode",
|
|
"vim_mode": true,
|
|
"ui_font_size": 16,
|
|
"buffer_font_size": null,
|
|
"theme": {
|
|
"mode": "system",
|
|
"light": "Rosé Pine Dawn",
|
|
"dark": "Catppuccin Mocha"
|
|
},
|
|
"relative_line_numbers": true,
|
|
"buffer_font_family": "JetBrainsMono Nerd Font",
|
|
"remove_trailing_whitespace_on_save": true
|
|
}
|