From e80f48d8ab20acf9790dadb769168083e62611df Mon Sep 17 00:00:00 2001 From: Hashino Date: Tue, 22 Apr 2025 12:25:57 -0300 Subject: [PATCH] feat(plugin): tutorial.nvim simple plugin to show a neovim tutorial on screen at all times --- init.lua | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/init.lua b/init.lua index 776c6873..a9a95f8b 100644 --- a/init.lua +++ b/init.lua @@ -248,6 +248,11 @@ require('lazy').setup({ -- Use `opts = {}` to automatically pass options to a plugin's `setup()` function, forcing the plugin to be loaded. -- + { -- shows a floating buffer with the most useful vim keymaps + 'Hashino/tutorial.nvim', + opts = {}, + }, + -- Alternatively, use `config = function() ... end` for full control over the configuration. -- If you prefer to call `setup` explicitly, use: -- {