commit af1dc7c935a3e0c233699255cafb01f4a9c66cf7
parent a2c4a546eb5b5ed5be104f3e9621b6e06cb8a2b4
Author: Anders Damsgaard <andersd@riseup.net>
Date: Wed, 15 Nov 2017 11:41:12 -0500
add vim-vixen configuration
Diffstat:
1 file changed, 62 insertions(+), 0 deletions(-)
diff --git a/misc_code/vim-vixen.json b/misc_code/vim-vixen.json
@@ -0,0 +1,61 @@
+{
+ "keymaps": {
+ "0": { "type": "scroll.home" },
+ ":": { "type": "command.show" },
+ "o": { "type": "command.show.open", "alter": false },
+ "O": { "type": "command.show.open", "alter": true },
+ "t": { "type": "command.show.tabopen", "alter": false },
+ "T": { "type": "command.show.tabopen", "alter": true },
+ "w": { "type": "command.show.winopen", "alter": false },
+ "W": { "type": "command.show.winopen", "alter": true },
+ ",": { "type": "command.show.buffer" },
+ "k": { "type": "scroll.vertically", "count": -2 },
+ "j": { "type": "scroll.vertically", "count": 2 },
+ "h": { "type": "scroll.horizonally", "count": -2 },
+ "l": { "type": "scroll.horizonally", "count": 2 },
+ "<C-Y>": { "type": "scroll.vertically", "count": -1 },
+ "<C-E>": { "type": "scroll.vertically", "count": 1 },
+ "u": { "type": "scroll.pages", "count": -0.5 },
+ "d": { "type": "scroll.pages", "count": 0.5 },
+ "<C-B>": { "type": "scroll.pages", "count": -1 },
+ "<C-F>": { "type": "scroll.pages", "count": 1 },
+ "gg": { "type": "scroll.top" },
+ "G": { "type": "scroll.bottom" },
+ "$": { "type": "scroll.end" },
+ "x": { "type": "tabs.close" },
+ "X": { "type": "tabs.reopen" },
+ "K": { "type": "tabs.next", "count": 1 },
+ "J": { "type": "tabs.prev", "count": 1 },
+ "g0": { "type": "tabs.first" },
+ "g$": { "type": "tabs.last" },
+ "r": { "type": "tabs.reload", "cache": false },
+ "R": { "type": "tabs.reload", "cache": true },
+ "zp": { "type": "tabs.pin.toggle" },
+ "zd": { "type": "tabs.duplicate" },
+ "zi": { "type": "zoom.in" },
+ "zo": { "type": "zoom.out" },
+ "zz": { "type": "zoom.neutral" },
+ "f": { "type": "follow.start", "newTab": false },
+ "F": { "type": "follow.start", "newTab": true },
+ "H": { "type": "navigate.history.prev" },
+ "L": { "type": "navigate.history.next" },
+ "[[": { "type": "navigate.link.prev" },
+ "]]": { "type": "navigate.link.next" },
+ "gu": { "type": "navigate.parent" },
+ "gU": { "type": "navigate.root" },
+ "y": { "type": "urls.yank" },
+ "/": { "type": "find.start" },
+ "n": { "type": "find.next" },
+ "N": { "type": "find.prev" },
+ "i": { "type": "addon.toggle.enabled" }
+ },
+ "search": {
+ "default": "duckduckgo",
+ "engines": {
+ "duckduckgo": "https://duckduckgo.com/?q={}",
+ "scholar": "https://scholar.google.com/scholar?q={}",
+ "youtube": "https://www.youtube.com/results?search_query={}",
+ "wikipedia": "https://en.wikipedia.org/w/index.php?search={}"
+ }
+ }
+}+
\ No newline at end of file