mirror of
https://github.com/gyoder/dots.git
synced 2026-02-27 17:03:45 +00:00
15 lines
243 B
Lua
15 lines
243 B
Lua
return {
|
|
cmd = { "rust-analyzer" },
|
|
filetypes = { "rust", "rs" },
|
|
root_markers = { "Cargo.lock" },
|
|
settings = {
|
|
["rust-analyzer"] = {
|
|
check = {
|
|
command = "clippy",
|
|
},
|
|
diagnostics = {
|
|
enable = true,
|
|
},
|
|
},
|
|
},
|
|
}
|