You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
326 B
19 lines
326 B
local Plugin = { 'simrat39/rust-tools.nvim' }
|
|
|
|
function Plugin.config()
|
|
local rt = require('rust-tools')
|
|
|
|
-- rt.setup({
|
|
-- tools = {
|
|
-- inlay_hints = {
|
|
-- auto = true,
|
|
-- show_parameter_hints = false,
|
|
-- parameter_hints_prefix = "",
|
|
-- other_hints_prefix = "",
|
|
-- },
|
|
-- }
|
|
-- })
|
|
end
|
|
|
|
return Plugin
|