mirror of
https://github.com/harivansh-afk/nvim.git
synced 2026-04-15 21:03:25 +00:00
18 lines
No EOL
346 B
Lua
18 lines
No EOL
346 B
Lua
return {
|
|
"folke/which-key.nvim",
|
|
event = 'VeryLazy',
|
|
opts = {
|
|
win = {
|
|
border = { "┏", "━", "┓", "┃", "┛","━", "┗", "┃" },
|
|
},
|
|
},
|
|
keys = {
|
|
{
|
|
"<leader>?",
|
|
function()
|
|
require("which-key").show({ global = false })
|
|
end,
|
|
desc = "Buffer Local Keymaps (which-key)",
|
|
},
|
|
},
|
|
} |