10 lines
243 B
Lua
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
|
|
}
|