aboutsummaryrefslogtreecommitdiffstats
path: root/nvim/after/plugin/keymap.lua
diff options
context:
space:
mode:
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)