diff options
| author | Xian Wang <dev@xianwang.io> | 2025-09-02 11:09:17 -0700 |
|---|---|---|
| committer | Xian Wang <dev@xianwang.io> | 2025-09-02 11:09:59 -0700 |
| commit | a535ed3cd55d93c4396d0c85dbd7d6aae8349542 (patch) | |
| tree | 9020276523a4c22c59731007f047142fcedc307c | |
| parent | 5ceaad9d65fb0b8ee962eb0cdcf6eb2d6fa347e7 (diff) | |
| download | dotfiles-a535ed3cd55d93c4396d0c85dbd7d6aae8349542.tar.gz dotfiles-a535ed3cd55d93c4396d0c85dbd7d6aae8349542.tar.bz2 dotfiles-a535ed3cd55d93c4396d0c85dbd7d6aae8349542.zip | |
zed: add basic settings
Signed-off-by: Xian Wang <dev@xianwang.io>
| -rw-r--r-- | config/zed/settings.json | 32 | ||||
| -rw-r--r-- | install.conf.yaml | 4 |
2 files changed, 36 insertions, 0 deletions
diff --git a/config/zed/settings.json b/config/zed/settings.json new file mode 100644 index 0000000..8460734 --- /dev/null +++ b/config/zed/settings.json @@ -0,0 +1,32 @@ +// 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) +{ + "telemetry": { + "metrics": false, + "diagnostics": false + }, + "base_keymap": "Atom", + "ui_font_size": 13, + "ui_font_family": ".SystemUIFont", + "buffer_font_size": 13, + "buffer_font_family": "Intel One Mono", + "buffer_line_height": "standard", + "indent_guides": { + "enabled": false + }, + "theme": { + "mode": "system", + "light": "One Light", + "dark": "Tokyo Night" + }, + "terminal": { + "font_size": 11, + "font_family": "Intel One Mono" + } +} diff --git a/install.conf.yaml b/install.conf.yaml index 84deeb8..ddd66fa 100644 --- a/install.conf.yaml +++ b/install.conf.yaml @@ -13,6 +13,10 @@ create: true force: true path: config/fontconfig/fonts.conf + ~/.config/zed/settings.json: + create: true + force: true + path: config/zed/settings.json ~/.gitconfig: force: true path: gitconfig |
