Files
orchid/.zed/settings.json
Lawrence Bethlenfalvy 3a3ae98aff Began implementing fully isomorphic macros
Like Rust's Proc macros. Now we have preprocessor recursion to worry about. I also made a cool macro for enums
2024-10-14 00:13:09 +02:00

27 lines
509 B
JSON

{
"languages": {
"Rust": {
"language_servers": ["rust-analyzer", "..."],
"formatter": "language_server"
}
},
"wrap_guides": [100],
"lsp": {
"rust-analyzer": {
"binary": {
"path": "C:\\Users\\z004yk5r\\.cargo\\bin\\rust-analyzer.exe"
},
"initialization_options": {
"check": {
"command": "clippy"
},
"rustfmt": {
"extraArgs": ["+nightly"]
}
}
}
},
"tab_size": 2,
"rust-analyzer": {}
}