added lsp_lines

This commit is contained in:
2023-04-26 20:30:10 +02:00
parent 8b373ff24f
commit a11811019c
2 changed files with 14 additions and 0 deletions

13
lua/plugins/lsp_lines.lua Normal file
View File

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