lsp: remove marskman and make rust-analyzer use all features
This commit is contained in:
parent
cae7a00960
commit
39e2ad9fe2
1 changed files with 9 additions and 3 deletions
12
init.lua
12
init.lua
|
|
@ -274,7 +274,6 @@ vim.api.nvim_create_autocmd({ "FileType" }, {
|
||||||
"json",
|
"json",
|
||||||
"latex",
|
"latex",
|
||||||
"lua",
|
"lua",
|
||||||
"markdown",
|
|
||||||
"python",
|
"python",
|
||||||
"rust",
|
"rust",
|
||||||
"terraform",
|
"terraform",
|
||||||
|
|
@ -340,9 +339,16 @@ vim.api.nvim_create_autocmd({ "FileType" }, {
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
marksman = {},
|
|
||||||
pylsp = {},
|
pylsp = {},
|
||||||
rust_analyzer = {},
|
rust_analyzer = {
|
||||||
|
settings = {
|
||||||
|
['rust-analyzer'] = {
|
||||||
|
cargo = {
|
||||||
|
features = "all"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
taplo = {},
|
taplo = {},
|
||||||
texlab = {},
|
texlab = {},
|
||||||
tflint = {},
|
tflint = {},
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue