aboutsummaryrefslogtreecommitdiffstats
path: root/nvim/after/plugin/keymap.lua
diff options
context:
space:
mode:
authorJP Appel <jeanpierre.appel01@gmail.com>2023-08-29 10:50:36 -0400
committerJP Appel <jeanpierre.appel01@gmail.com>2023-08-29 10:50:36 -0400
commitf81a5f8f180f453ef1d142753fd2f0505f1e28e7 (patch)
treecd0eac0a7be2928fe834091288764887038eb2f7 /nvim/after/plugin/keymap.lua
parent8c7a6b826fe42f8ec3ae83015386813806fb66ff (diff)
changed bindings locations
Diffstat (limited to 'nvim/after/plugin/keymap.lua')
-rw-r--r--nvim/after/plugin/keymap.lua5
1 files changed, 5 insertions, 0 deletions
diff --git a/nvim/after/plugin/keymap.lua b/nvim/after/plugin/keymap.lua
new file mode 100644
index 0000000..cf29d6a
--- /dev/null
+++ b/nvim/after/plugin/keymap.lua
@@ -0,0 +1,5 @@
+local Remap = require("keymap")
+
+Remap.nmap("gf", function()
+ vim.cmd([[:e <cfile>]])
+end)