mirror of
https://github.com/darwincereska/nvim-config.git
synced 2026-02-12 06:24:42 -05:00
feat(working): first working condition
This commit is contained in:
25
lua/plugins/which-key.lua
Normal file
25
lua/plugins/which-key.lua
Normal file
@@ -0,0 +1,25 @@
|
||||
return {
|
||||
"folke/which-key.nvim",
|
||||
event = "VeryLazy",
|
||||
opts = {
|
||||
preset = "modern",
|
||||
delay = 300,
|
||||
win = {
|
||||
border = "rounded",
|
||||
padding = { 1, 2 },
|
||||
},
|
||||
layout = {
|
||||
spacing = 3,
|
||||
},
|
||||
spec = {
|
||||
{ "<leader>c", group = "code" },
|
||||
{ "<leader>f", group = "file/find" },
|
||||
{ "<leader>g", group = "git" },
|
||||
{ "<leader>r", group = "rename" },
|
||||
{ "<leader>t", group = "toggle/table" },
|
||||
{ "g", group = "goto" },
|
||||
{ "[", group = "prev" },
|
||||
{ "]", group = "next" },
|
||||
},
|
||||
},
|
||||
}
|
||||
Reference in New Issue
Block a user