dotfiles/.config/nvim/lua/plugins/extras/lsp/symbol-usage.lua
2023-12-07 22:49:53 +01:00

11 lines
189 B
Lua

return {
"Wansmer/symbol-usage.nvim",
event = function()
if vim.fn.has("nvim-0.10") == 1 then
return "LspAttach"
else
return "BufRead"
end
end,
opts = {},
}