all repos

init.lua @ 46819581161198d432a7e3987c6395667f1fa3bc

my nvim config

init.lua/lua/fk/plugin/rust-tools.lua(view raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
---@param opts table
return function(opts)
  require("rust-tools").setup {
    server = opts,
    tools = {
      inlay_hints = {
        parameter_hints_prefix = "<- ",
        other_hints_prefix = "=> ",
        highlight = "LspCodeLens",
      },
    },
  }
end