chore(zed): local settings with examples

This commit is contained in:
Michele Cereda
2024-09-03 08:15:22 +02:00
parent 01b1508ab4
commit 83360be33a
2 changed files with 21 additions and 8 deletions

6
.zed/settings.json Normal file
View File

@@ -0,0 +1,6 @@
{
"wrap_guides": [80, 120],
"buffer_font_features": {
"calt": false
}
}

View File

@@ -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
}
}
}