From 370b79af2a2a73a0a3a57d9758bc0ee6a1e82cb3 Mon Sep 17 00:00:00 2001 From: zymon Date: Mon, 26 Aug 2024 15:58:09 +0200 Subject: [PATCH] which-key integrated --- lua/znvim/plugins/editor.lua | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 lua/znvim/plugins/editor.lua diff --git a/lua/znvim/plugins/editor.lua b/lua/znvim/plugins/editor.lua new file mode 100644 index 0000000..19b1f3e --- /dev/null +++ b/lua/znvim/plugins/editor.lua @@ -0,0 +1,13 @@ +return { + + { -- displays a popup with possible key bindings + "https://github.com/folke/which-key.nvim", + dependencies = { + "https://github.com/kyazdani42/nvim-web-devicons", + }, + opts = { + preset = "helix", + }, + }, + +}