1
0

feat(nvim): Use vanila neovim lsp client

This commit is contained in:
2025-07-04 21:57:53 +02:00
parent a6f1537b1d
commit b3a59604a3
6 changed files with 113 additions and 229 deletions

View File

@@ -0,0 +1,12 @@
return {
cmd = { 'rust-analyzer' },
filetypes = { 'rust' },
root_markers = { 'Cargo.toml', '.git' },
settings = {
['rust-analyzer'] = {
check = {
command = 'clippy',
},
},
},
}