diff --git a/lua/keymap/tool.lua b/lua/keymap/tool.lua index 4a15c68e3..471e9b1a4 100644 --- a/lua/keymap/tool.lua +++ b/lua/keymap/tool.lua @@ -7,13 +7,20 @@ local vim_path = require("core.global").vim_path require("keymap.helpers") local plug_map = { + -- Plugin: edgy + ["n|"] = map_callback(function() + require("edgy").toggle("left") + end) + :with_noremap() + :with_silent() + :with_desc("filetree: Toggle"), + -- Plugin: vim-fugitive ["n|gps"] = map_cr("G push"):with_noremap():with_silent():with_desc("git: Push"), ["n|gpl"] = map_cr("G pull"):with_noremap():with_silent():with_desc("git: Pull"), ["n|gG"] = map_cu("Git"):with_noremap():with_silent():with_desc("git: Open git-fugitive"), -- Plugin: nvim-tree - ["n|"] = map_cr("NvimTreeToggle"):with_noremap():with_silent():with_desc("filetree: Toggle"), ["n|nf"] = map_cr("NvimTreeFindFile"):with_noremap():with_silent():with_desc("filetree: Find file"), ["n|nr"] = map_cr("NvimTreeRefresh"):with_noremap():with_silent():with_desc("filetree: Refresh"),