17 lines
326 B
Lua
17 lines
326 B
Lua
-- Author : swytch
|
|
-- Created : Wednesday Nov. 30, 2022 16:35:43 CET
|
|
-- License : GPLv3
|
|
-- Description : neovim lsp config file for rust_analyzer
|
|
|
|
|
|
local M = {}
|
|
|
|
local rust_analayzer_binary = _G.lsp_root_dir .. "rust_analyzer/rust_analyzer"
|
|
|
|
M.setup = function(opts)
|
|
opts.settings = {}
|
|
end
|
|
|
|
return M
|
|
|