diff --git a/.zed/settings.json b/.zed/settings.json new file mode 100644 index 0000000..45cac06 --- /dev/null +++ b/.zed/settings.json @@ -0,0 +1,6 @@ +{ + "wrap_guides": [80, 120], + "buffer_font_features": { + "calt": false + } +} diff --git a/examples/dotfiles/.config/zed/settings.jsonc b/examples/dotfiles/.config/zed/settings.jsonc index 488677c..2a7f7cb 100644 --- a/examples/dotfiles/.config/zed/settings.jsonc +++ b/examples/dotfiles/.config/zed/settings.jsonc @@ -1,18 +1,25 @@ // Zed settings // // ** This file extension must be 'json', not 'jsonc'. ** -// ** Only named with .jsonc to skip validation in the repo. +// ** It is named with '.jsonc' only to skip validation in the repo. ** // -// For information on how to configure Zed, see the Zed -// documentation: https://zed.dev/docs/configuring-zed. +// For information on how to configure Zed, see the Zed documentation at +// https://zed.dev/docs/configuring-zed. // -// To see all of Zed's default settings without changing your -// custom settings, run the `open default settings` command -// from the command palette or from `Zed` application menu. +// To see all of Zed's default settings without changing one's custom settings, +// run the `open default settings` command from the command palette or from the +// `Zed` application menu. { "ui_font_size": 16, "buffer_font_size": 16, + "buffer_font_features": { + "calt": false + }, "features": { - "inline_completion_provider": "none" // Disable copilot + "inline_completion_provider": "none" + }, + "telemetry": { + "diagnostics": false, + "metrics": false } -} \ No newline at end of file +}