dotfiles/.config/nvim/lua/plugins/which-key.lua
Sergio Laín c4e8fe2941
♻️ refactor(nvim): big changes to the config structure
a lot of plugins are moving to the extra modules
all the keymaps are on the keys section of each plugin
which-key options are now dependant on the plugin they are in, etc
2023-10-20 15:01:41 +02:00

11 lines
167 B
Lua

return {
{
"folke/which-key.nvim",
event = "VeryLazy",
opts = {
defaults = {
["<leader>dP"] = { name = "+python" },
},
},
},
}