From ee269af970c3a2d7d3cebcbaf98a75f7f68233f2 Mon Sep 17 00:00:00 2001 From: Michael Chris Lopez Date: Sun, 5 Sep 2021 17:39:39 +0800 Subject: [PATCH] add WhichKey --- README.md | 1 + lua/zenbones/init.lua | 5 +++++ 2 files changed, 6 insertions(+) diff --git a/README.md b/README.md index 209ed98..8d33a24 100644 --- a/README.md +++ b/README.md @@ -138,6 +138,7 @@ currently supported. - [BarBar](https://github.com/romgrk/barbar.nvim) - [CoC](https://github.com/neoclide/coc.nvim) - [Neogit](https://github.com/TimUntersberger/neogit) +- [WhichKey](https://github.com/folke/which-key.nvim) ## Other implementations diff --git a/lua/zenbones/init.lua b/lua/zenbones/init.lua index 79f7b0f..6f599c1 100644 --- a/lua/zenbones/init.lua +++ b/lua/zenbones/init.lua @@ -307,6 +307,11 @@ local theme = lush(function() NeogitDiffAddHighlight { DiffAdd }, NeogitHunkHeader { LineNr }, NeogitHunkHeaderHighlight { CursorLine, fg = c.stone, gui = "bold" }, + + WhichKey { Statement }, + WhichKeyGroup { Special }, + WhichKeySeparator { LineNr }, + WhichKeyValue { Constant }, } end) -- stylua: ignore end