Initial config

This commit is contained in:
2023-02-23 23:25:59 +01:00
parent 67d296e0eb
commit d97c6f1c2c
7 changed files with 87 additions and 0 deletions

View File

@ -0,0 +1,5 @@
return {
capabilities = {
offsetEncoding = "utf-8",
},
}

View File

@ -0,0 +1,15 @@
return {
settings = {
["rust-analyzer"] = {
checkOnSave = {
command = "clippy",
extraArgs = {
"--all-features",
"--",
"-W", "clippy::pedantic",
"-W", "clippy::nursery",
},
},
},
},
}