Last active
November 16, 2017 14:47
-
-
Save verginer/01a5fc2788b2f60ca5fbff91e1dcca02 to your computer and use it in GitHub Desktop.
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
set autoupdategist | |
let barposition = "top" | |
set hud | |
set noregex | |
set typelinkhints | |
let hintcharacters = "fdsawerjkiop" | |
command g tabnew google | |
let mapleader = ',' | |
map l nextTab | |
map h previousTab | |
map s :open google<Space> | |
map S :open! google<Space> | |
map { 5k | |
map } 5j | |
map <Leader>cl :open! chrome://settings/clearBrowserData<CR> | |
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 ci :call getIP<CR> | |
let blacklists = ["https://lab2/*", "http://localhost/*", "http://simpol-a/*", "https://github.com/*", "https://*.slack.com/*"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment