mirror of
https://github.com/szymon-jozef/superior_dotfiles.git
synced 2026-09-07 12:10:38 +02:00
Add .config/nvim/lazy-lock.json Add .config/nvim/lua/config/lazy.lua Add .config/nvim/lua/config/remaps.lua Add .config/nvim/lua/config/set.lua Add .config/nvim/lua/plugins/colorscheme.lua Add .config/nvim/lua/plugins/git.lua Add .config/nvim/lua/plugins/harpoon.lua Add .config/nvim/lua/plugins/lsp.lua Add .config/nvim/lua/plugins/telescope.lua Add .config/nvim/lua/plugins/whichkey.lua Add .config/nvim/spell/pl.cp1250.spl Add .config/nvim/spell/pl.iso-8859-2.spl Add .config/nvim/spell/pl.utf-8.spl
19 lines
456 B
Lua
19 lines
456 B
Lua
return {
|
|
"folke/which-key.nvim",
|
|
event = "VeryLazy",
|
|
opts = {
|
|
-- your configuration comes here
|
|
-- or leave it empty to use the default settings
|
|
-- refer to the configuration section below
|
|
},
|
|
keys = {
|
|
{
|
|
"<leader>?",
|
|
function()
|
|
require("which-key").show({ global = false })
|
|
end,
|
|
desc = "Buffer Local Keymaps (which-key)",
|
|
},
|
|
},
|
|
}
|