nvim/lua/plugins/lsp_lines.lua
2023-04-26 20:34:33 +02:00

14 lines
223 B
Lua

return {
'https://git.sr.ht/~whynothugo/lsp_lines.nvim',
config = true,
keys = {
{
'<space>l',
function()
require('lsp_lines').toggle()
end,
desc = 'Toggle lsp_lines',
}
},
}