Skip to content

Commit

Permalink
Create configuration file for zed editor
Browse files Browse the repository at this point in the history
Zed has become a very popular code editor now, and I use it a lot
on my macbook. Therefore, I felt that we should add default features configuration
for zed in our codebase
  • Loading branch information
AS1100K committed Feb 6, 2025
1 parent 6056da4 commit 9980988
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .zed/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"languages": {
"Markdown": {
"formatter": "prettier"
}
},
"lsp": {
"rust-analyzer": {
"initialization_options": {
"cargo": {
"features": ["full", "docsrs"]
}
}
}
}
}

0 comments on commit 9980988

Please sign in to comment.