Last active
April 4, 2016 20:18
-
-
Save argshook/cb0c4cd43a25b321e93a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set linkanimations | |
set sortlinkhints | |
set noautofocus | |
set smoothscroll | |
let scrollstep = 100 | |
let blacklists = ["http://devdocs.io/*","https://inbox.google.com/*","https://mail.google.com/*","http://vim-adventures.com/*"] | |
let hintcharacters = 'asdfghjkl' | |
getIP() -> {{ | |
httpRequest({url: 'http://api.ipify.org/?format=json', json: true}, | |
function(res) { Status.setMessage('IP: ' + res.ip); }); | |
}} | |
site '*://*.reddit.com/*' { | |
unmap j | |
unmap k | |
unmap x | |
unmap [ | |
unmap ] | |
unmap [[ | |
unmap ]] | |
unmap g | |
unmap n | |
unmap a | |
unmap z | |
unmap 9 | |
unmap 0 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment