diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-01-13 22:35:48 +0100 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-01-13 22:35:48 +0100 |
commit | ad0e6da639f62f7456d76bdfe2f97583a119214e (patch) | |
tree | db1af38ce10ee4c7e0d5aa444098317168ab7dcd | |
parent | 5e75d040cc3a4fac737e99ddd61d3912533a146e (diff) |
Fix split keys in whichkey
-rw-r--r-- | lua/config/whichkey.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lua/config/whichkey.lua b/lua/config/whichkey.lua index ff884ab..4e23e2e 100644 --- a/lua/config/whichkey.lua +++ b/lua/config/whichkey.lua @@ -96,9 +96,9 @@ local mappings = { }, ["F"] = { "<cmd>Telescope live_grep theme=ivy<cr>", "Find Text" }, ["P"] = { "<cmd>Telescope projects<cr>", "Projects" }, - ["z"] = { "<cmd>ZenMode<cr>", "Zen Mode" }, - ["v"] = { "vsplit", "Vertical Split"}, - ["h"] = { "split", "Horizontal Split"}, + ["z"] = { "<cmd>ZenMode<cr>", "Zen Mode" }, + ["v"] = { "<cmd>vsplit<cr>", "Vertical Split" }, + ["h"] = { "<cmd>split<cr>", "Horizontal Split" }, p = { name = "Packer", c = { "<cmd>PackerCompile<cr>", "Compile" }, |