mirror of
https://github.com/zed-industries/zed.git
synced 2024-11-25 00:32:26 +00:00
Make Markdown default to "format_on_save": "off"
(#11584)
This PR changes the Markdown language defaults to set `format_on_save` to be `off`. Prettier's Markdown formatting is a bit controversial for some people, so we turn it off by default. To restore the previous behavior, add the following to your settings: ```json { "languages": { "Markdown": { "format_on_save": "on" } } } ``` Release Notes: - Changed the default `format_on_save` behavior for Markdown files to be `off`.
This commit is contained in:
parent
a7aa2578e1
commit
adecbd1815
1 changed files with 3 additions and 0 deletions
|
@ -628,6 +628,9 @@
|
|||
"Make": {
|
||||
"hard_tabs": true
|
||||
},
|
||||
"Markdown": {
|
||||
"format_on_save": "off"
|
||||
},
|
||||
"Prisma": {
|
||||
"tab_size": 2
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue