diff options
author | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-01-14 18:48:13 +0100 |
---|---|---|
committer | Gustaf Rydholm <gustaf.rydholm@gmail.com> | 2022-01-14 18:48:13 +0100 |
commit | cdba3556882f5672de141cfa98c64f4257c69de0 (patch) | |
tree | 141f5d6529ed6b51afaa4d01114c91209afdce5e /lua/config/whichkey.lua | |
parent | 4aaf5df5b7023e73e58828b17b621a282be08860 (diff) |
Add toggleterm plugin
Diffstat (limited to 'lua/config/whichkey.lua')
-rw-r--r-- | lua/config/whichkey.lua | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/lua/config/whichkey.lua b/lua/config/whichkey.lua index 94aa65a..955e85a 100644 --- a/lua/config/whichkey.lua +++ b/lua/config/whichkey.lua @@ -99,6 +99,7 @@ local mappings = { ["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" }, @@ -162,6 +163,7 @@ local mappings = { "Workspace Symbols", }, }, + s = { name = "Search", b = { "<cmd>Telescope git_branches<cr>", "Checkout branch" }, @@ -173,6 +175,7 @@ local mappings = { k = { "<cmd>Telescope keymaps<cr>", "Keymaps" }, C = { "<cmd>Telescope commands<cr>", "Commands" }, }, + r = { name = "Replace", r = { "<cmd>lua require('spectre').open()<cr>", "Replace" }, @@ -180,16 +183,12 @@ local mappings = { f = { "<cmd>lua require('spectre').open_file_search()<cr>", "Replace Buffer" }, }, - -- t = { - -- name = "Terminal", - -- n = { "<cmd>lua _NODE_TOGGLE()<cr>", "Node" }, - -- u = { "<cmd>lua _NCDU_TOGGLE()<cr>", "NCDU" }, - -- t = { "<cmd>lua _HTOP_TOGGLE()<cr>", "Htop" }, - -- p = { "<cmd>lua _PYTHON_TOGGLE()<cr>", "Python" }, - -- f = { "<cmd>ToggleTerm direction=float<cr>", "Float" }, - -- h = { "<cmd>ToggleTerm size=10 direction=horizontal<cr>", "Horizontal" }, - -- v = { "<cmd>ToggleTerm size=80 direction=vertical<cr>", "Vertical" }, - -- }, + t = { + name = "Terminal", + f = { "<cmd>ToggleTerm direction=float<cr>", "Float" }, + h = { "<cmd>ToggleTerm size=10 direction=horizontal<cr>", "Horizontal" }, + v = { "<cmd>ToggleTerm size=80 direction=vertical<cr>", "Vertical" }, + }, } local vopts = { |