File tree Expand file tree Collapse file tree 2 files changed +18
-0
lines changed Expand file tree Collapse file tree 2 files changed +18
-0
lines changed Original file line number Diff line number Diff line change 1
1
# Unreleased
2
2
3
+ ## Added
4
+ - practicalli: showkeys plugin and key binding (#30 )
5
+
3
6
# 2025-03-12
4
7
## Added
5
8
- clojure: parinfer group and toggle key map
Original file line number Diff line number Diff line change @@ -69,6 +69,18 @@ return {
69
69
-- highlight_bg = "#800080", -- or 'purple'
70
70
},
71
71
},
72
+ { -- Show key presses in Neovim window
73
+ " nvzone/showkeys" ,
74
+ lazy = false ,
75
+ cmd = " ShowkeysToggle" ,
76
+ opts = {
77
+ excluded_modes = { " i" , " t" }, -- skip insert and terminal
78
+ position = " bottom-center" ,
79
+ show_count = true ,
80
+ maxkeys = 4 ,
81
+ timeout = 4 ,
82
+ },
83
+ },
72
84
-- ------------------------------------------
73
85
74
86
-- ------------------------------------------
@@ -281,6 +293,9 @@ return {
281
293
[" <Leader>ghgr" ] = { " <cmd>GistCreate<cr>" , desc = " Gist Region" },
282
294
[" <Leader>ghgg" ] = { " <cmd>GistCreateFromFile<cr>" , desc = " Gist File" },
283
295
[" <Leader>ghgl" ] = { " <cmd>GistsList<cr>" , desc = " List Gists" },
296
+
297
+ -- Showkeys plugin (visualise key presses in Neovim window)
298
+ [" <Leader>uk" ] = { " <cmd>ShowkeysToggle<cr>" , desc = " Toggle Showkeys" },
284
299
},
285
300
t = {
286
301
-- terminal mode key bindings
You can’t perform that action at this time.
0 commit comments