Added cheatsheed.nvim usage

This commit is contained in:
Nikita Avgustanov 2025-11-13 14:13:09 +04:00
parent f4663f708d
commit a03a25e02a
1 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,13 @@
return {
'sudormrfbin/cheatsheet.nvim',
requires = {
{ 'nvim-telescope/telescope.nvim' },
{ 'nvim-lua/popup.nvim' },
{ 'nvim-lua/plenary.nvim' },
},
config = function()
require('cheatsheet').setup()
end,
vim.keymap.set('n', '<leader>sc', ':Cheatsheet<CR>', { desc = '[S]earch in [C]eatsheet' }),
}