mirror of
https://github.com/zed-industries/zed.git
synced 2025-01-26 12:21:50 +00:00
7d5425e142
Co-Authored-By: Nathan Sobo <nathan@zed.dev>
14 lines
518 B
TOML
14 lines
518 B
TOML
name = "Rust"
|
|
path_suffixes = ["rs"]
|
|
brackets = [
|
|
{ start = "{", end = "}", close = true, newline = true },
|
|
{ start = "[", end = "]", close = true, newline = true },
|
|
{ start = "(", end = ")", close = true, newline = true },
|
|
{ start = "<", end = ">", close = false, newline = true },
|
|
{ start = "\"", end = "\"", close = true, newline = false },
|
|
{ start = "/*", end = " */", close = true, newline = false },
|
|
]
|
|
|
|
[language_server]
|
|
binary = "rust-analyzer"
|
|
disk_based_diagnostic_sources = ["rustc"]
|