nvim: add global-note

This commit is contained in:
2024-06-15 23:33:05 +02:00
parent 09ffb3b2d9
commit 492adae580
2 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,12 @@
return {
'backdround/global-note.nvim',
keys = {
{
"<leader>n",
function()
require('global-note').toggle_note()
end,
desc = 'Toggle global [N]ote',
},
},
}