mirror of
https://gitea.com/mcereda/oam.git
synced 2026-02-08 21:34:25 +00:00
chore(zed): local settings with examples
This commit is contained in:
6
.zed/settings.json
Normal file
6
.zed/settings.json
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
{
|
||||||
|
"wrap_guides": [80, 120],
|
||||||
|
"buffer_font_features": {
|
||||||
|
"calt": false
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,18 +1,25 @@
|
|||||||
// Zed settings
|
// Zed settings
|
||||||
//
|
//
|
||||||
// ** This file extension must be 'json', not 'jsonc'. **
|
// ** 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
|
// For information on how to configure Zed, see the Zed documentation at
|
||||||
// documentation: https://zed.dev/docs/configuring-zed.
|
// https://zed.dev/docs/configuring-zed.
|
||||||
//
|
//
|
||||||
// To see all of Zed's default settings without changing your
|
// To see all of Zed's default settings without changing one's custom settings,
|
||||||
// custom settings, run the `open default settings` command
|
// run the `open default settings` command from the command palette or from the
|
||||||
// from the command palette or from `Zed` application menu.
|
// `Zed` application menu.
|
||||||
{
|
{
|
||||||
"ui_font_size": 16,
|
"ui_font_size": 16,
|
||||||
"buffer_font_size": 16,
|
"buffer_font_size": 16,
|
||||||
|
"buffer_font_features": {
|
||||||
|
"calt": false
|
||||||
|
},
|
||||||
"features": {
|
"features": {
|
||||||
"inline_completion_provider": "none" // Disable copilot
|
"inline_completion_provider": "none"
|
||||||
|
},
|
||||||
|
"telemetry": {
|
||||||
|
"diagnostics": false,
|
||||||
|
"metrics": false
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user