migrate to v3

This commit is contained in:
2023-05-25 20:06:18 +02:00
parent 00f2624fec
commit 5a80e98be9
3 changed files with 2 additions and 2 deletions

5
lsp/config/clangd.lua Normal file
View File

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

View File

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