all repos

init.lua @ e801c72d3a8e5a6cde44e0aee6a5fc6c54ef373c

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