Files
yadm/.config/nvim/lua/plugins/symbol-usage.lua
2023-09-23 01:21:02 +02:00

10 lines
243 B
Lua

return {
'Wansmer/symbol-usage.nvim',
event = 'BufReadPre', -- need run before LspAttach if you use nvim 0.9. On 0.10 use 'LspAttach'
config = function()
require('symbol-usage').setup({
vt_position = "textwidth"
})
end
}