This repository has been archived on 2024-03-04. You can view files and clone it, but cannot push or open issues or pull requests.
linux/.config/nvim/lua/plugin/lsp/rust.lua

14 lines
310 B
Lua
Raw Normal View History

local lspconfig = require("lspconfig")
2023-08-08 16:24:15 +03:00
lspconfig.rust_analyzer.setup {
settings = {
["rust-analyzer"] = {
2023-08-08 16:24:15 +03:00
rustfmt = {
extraArgs = { "--config", "tab_spaces=2", "brace_style=AlwaysNextLine", "control_brace_style=AlwaysNextLine" }
2023-08-08 16:24:15 +03:00
}
},
},
}
vim.g.rust_recommended_style = false