mirror of
https://github.com/ivuorinen/dotfiles.git
synced 2026-01-27 19:45:36 +00:00
21 lines
595 B
Lua
21 lines
595 B
Lua
-- 🗺️ A legend for your keymaps, commands, and autocmds, with which-key.nvim integration
|
|
-- https://github.com/mrjones2014/legendary.nvim
|
|
return {
|
|
"mrjones2014/legendary.nvim",
|
|
version = "*",
|
|
-- since legendary.nvim handles all your keymaps/commands,
|
|
-- its recommended to load legendary.nvim before other plugins
|
|
priority = 10000,
|
|
lazy = false,
|
|
-- sqlite is only needed if you want to use frecency sorting
|
|
-- dependencies = { 'kkharji/sqlite.lua' }
|
|
opts = {
|
|
lazy_nvim = {
|
|
auto_register = true,
|
|
},
|
|
which_key = {
|
|
auto_register = true,
|
|
},
|
|
},
|
|
}
|