19 lines
396 B
Lua
19 lines
396 B
Lua
vim.g.rustaceanvim = {
|
|
-- Plugin configuration
|
|
tools = {
|
|
},
|
|
-- LSP configuration
|
|
server = {
|
|
default_settings = {
|
|
-- rust-analyzer language server configuration
|
|
["rust-analyzer"] = {
|
|
check = {
|
|
command = "clippy"
|
|
}
|
|
},
|
|
},
|
|
},
|
|
-- DAP configuration
|
|
dap = {
|
|
},
|
|
}
|