Last active
January 10, 2019 20:27
-
-
Save jmadkins/d81950f0bb346f20d95e670e778756c7 to your computer and use it in GitHub Desktop.
cVimrc
This file contains hidden or 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
| let mapleader = "," | |
| " Code blocks (see below for more info) | |
| getIP() -> {{ | |
| httpRequest({url: 'http://api.ipify.org/?format=json', json: true}, | |
| function(res) { Status.setMessage('IP: ' + res.ip); }); | |
| }} | |
| " Displays your public IP address in the status bar | |
| map <Leader>ip :call getIP<CR> | |
| let completionengines = ["duckduckgo", "wikipedia", "imdb"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment