1
0
Fork 0

lsp: remove marskman and make rust-analyzer use all features

This commit is contained in:
Felipe 2023-11-01 21:49:22 -03:00
parent cae7a00960
commit 39e2ad9fe2
Signed by: pitbuster
SSH key fingerprint: SHA256:HDYu2Pm4/TmSX8GBwV49UvFWr1Ljg8XlHxKeCpjJpOk

View file

@ -274,7 +274,6 @@ vim.api.nvim_create_autocmd({ "FileType" }, {
"json",
"latex",
"lua",
"markdown",
"python",
"rust",
"terraform",
@ -340,9 +339,16 @@ vim.api.nvim_create_autocmd({ "FileType" }, {
},
},
},
marksman = {},
pylsp = {},
rust_analyzer = {},
rust_analyzer = {
settings = {
['rust-analyzer'] = {
cargo = {
features = "all"
}
}
}
},
taplo = {},
texlab = {},
tflint = {},