From a03a25e02a80544f60144a15ef779c2097db7eb1 Mon Sep 17 00:00:00 2001 From: Nikita Avgustanov Date: Thu, 13 Nov 2025 14:13:09 +0400 Subject: [PATCH] Added cheatsheed.nvim usage --- lua/custom/plugins/cheatsheet.lua | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 lua/custom/plugins/cheatsheet.lua 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' }), +}