diff --git a/lua/custom/plugins/cheatsheet.lua b/lua/custom/plugins/cheatsheet.lua new file mode 100644 index 00000000..28b0df2a --- /dev/null +++ b/lua/custom/plugins/cheatsheet.lua @@ -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', 'sc', ':Cheatsheet', { desc = '[S]earch in [C]eatsheet' }), +}