aboutsummaryrefslogtreecommitdiff
path: root/config.lua
diff options
context:
space:
mode:
Diffstat (limited to 'config.lua')
-rw-r--r--config.lua4
1 files changed, 4 insertions, 0 deletions
diff --git a/config.lua b/config.lua
index 4f4aee3..e455fcd 100644
--- a/config.lua
+++ b/config.lua
@@ -68,6 +68,10 @@ web.keymap.set('n', 'q', function()
end)
end)
+-- History back/forward
+web.keymap.set('n', '<s-h>', function() web.history.back(); end)
+web.keymap.set('n', '<s-l>', function() web.history.forward(); end)
+
-- Dummy test keymap
web.keymap.set('n', 'm', function()
print('Hello world. Keypress test')