WIP: home: vim: notify
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Bruno BELANYI 2022-03-11 10:38:42 +01:00
parent 30c676e20b
commit 8e56077d94
4 changed files with 13 additions and 0 deletions

View file

@ -1,5 +1,6 @@
lua << EOF
local wk = require("which-key")
local telescope = require("telescope")
local telescope_builtin = require("telescope.builtin")
local keys = {
@ -10,6 +11,7 @@ local keys = {
F = { telescope_builtin.find_files, "Files" },
g = { telescope_builtin.live_grep, "Grep string" },
G = { telescope_builtin.grep_string, "Grep string under cursor" },
n = { telescope.extensions.notify.notify, "Notification history" },
},
}