18 lines
299 B
Lua
18 lines
299 B
Lua
return {
|
|
"williamboman/mason-lspconfig.nvim",
|
|
config = function()
|
|
local nvim_lsp = require("lspconfig")
|
|
|
|
nvim_lsp.rust_analyzer.setup({
|
|
settings = {
|
|
["rust-analyzer"] = {
|
|
cargo = {
|
|
allTargets = false,
|
|
target = "xtensa-esp32-none-elf",
|
|
},
|
|
},
|
|
},
|
|
})
|
|
end,
|
|
}
|