Neovim cool plugin: symbol-usage.nvim

Cool addition to my Neovim setup:

It uses the references command from the LSP to show us how many times a function is used.

I think it’s cool and it helps me to remember to use gr to navigate to those references instead of grepping through code.

If you’re going to try it, you need this config:

require('symbol-usage').setup({
  filetypes = {
    elixir = {
      symbol_request_pos = 'start',
    },
  },
})
6 Likes

Man that’s an amazing find, installed it with your config block and it immediately helped me. Thanks a bunch!

1 Like

Glad you enjoyed it too.