Do not use this plugin.
Comment from 5igm4 on reddit
If you press the leader key you should already have suggestions. Plus: in lazyvim leader key+sk will give you all the command in searchable format
A neovim plugin that displays a comprehensive cheatsheet for LazyVim keybindings in a floating window.
- Displays a detailed cheatsheet of LazyVim keybindings
- Opens in a floating window for easy reference without disrupting your workflow
- Configurable keybinding to open the cheatsheet
- Search by using /
- Easy to close with 'q' or ''
Using lazy.nvim
Add the following to your Neovim configuration:
{
"bjarneo/lazyvim-cheatsheet.nvim",
keys = {
{
"ch",
function()
require("lazyvim-cheatsheet").show()
end,
desc = "Show LazyVim Cheatsheet",
},
},
}
After installation, you can open the cheatsheet by pressing <leader>ch
in normal mode (or whatever keybinding you've configured).
To close the cheatsheet, press q
or <Esc>
while the cheatsheet window is focused.
Contributions are welcome! Please feel free to submit a Pull Request.
This project is licensed under the MIT License - see the LICENSE file for details.