summaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
authorJiayi Zhao <jeff.no.zhao@gmail.com>2018-12-23 17:17:15 -0500
committerJiayi Zhao <jeff.no.zhao@gmail.com>2018-12-23 17:17:15 -0500
commit918737b25de58e119f8ee9acdc133ed97bc9d54f (patch)
treeb9f549d648a221e8a25334285648b19f4b8032dd /config
parent45ee5dbbc79e4f3465a3f690a796a6f346d82bd1 (diff)
add support for custom keymapping
Diffstat (limited to 'config')
-rw-r--r--config/keymap.toml19
1 files changed, 19 insertions, 0 deletions
diff --git a/config/keymap.toml b/config/keymap.toml
new file mode 100644
index 0000000..f62108a
--- /dev/null
+++ b/config/keymap.toml
@@ -0,0 +1,19 @@
+[keymaps]
+Quit = [ "q" ]
+
+MoveUp = [ "UP" ]
+MoveDown = [ "DOWN" ]
+MoveHome = [ "HOME" ]
+MoveEnd = [ "END" ]
+Open = [ "RIGHT" ]
+ParentDirectory = [ "LEFT" ]
+MovePageUp = [ "PPAGE" ]
+MovePageDown = [ "NPAGE" ]
+
+DeleteFile = [ "d", "D" ]
+CutFile = [ "d", "d" ]
+RenameFile = [ "a" ]
+CopyFile = [ "y", "y" ]
+
+OpenWith = [ "r" ]
+ToggleHiddenFiles = [ "z", "h" ]