Last active
May 29, 2019 23:20
-
-
Save ivotron/b8c8a33f378fd29771d2c7e4198c14d7 to your computer and use it in GitHub Desktop.
cvim chrome extension configuration
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
unmap <C-h> | |
unmap <C-l> | |
map <C-d> scrollPageDown | |
map <C-u> scrollPageUp | |
map <C-h> previousTab | |
map <C-l> nextTab | |
map u lastClosedTab | |
map m closeTab | |
let mapLeader = "," | |
" define search engines | |
let searchengine googlemaps = 'https://www.google.com/maps/search/%s' | |
let searchengine googlescholar = "http://scholar.google.ch/scholar?hl=en&q=%s" | |
let searchengine ubuntupackagesearch = "http://packages.ubuntu.com/search?suite=default§ion=all&arch=any&searchon=names&keywords=%s" | |
let searchengine ubuntupackagecontentsearch = "http://packages.ubuntu.com/search?suite=artful§ion=all&arch=any&searchon=contents&keywords=%s" | |
" aliases | |
let searchalias gm = 'googlemaps' | |
let searchalias w = 'wikipedia' | |
let searchalias gs = 'googlescholar' | |
let searchalias ub = 'ubuntupackagesearch' | |
let searchalias ubc = 'ubuntupackagecontentsearch' | |
" enable them | |
let completionengines = ['google', 'wikipedia', 'googlemaps', 'googlescholar', 'ubuntupackagesearch', 'ubuntupackagecontentsearch'] | |
" set default | |
let defaultengine = "google" | |
" blacklists | |
let blacklists = ["*://mail.google.com/*", "*://calendar.google.com/*", "*://*.atlassian.net/*"] | |
" other | |
let smoothscroll = 1 | |
let autoupdategist = 1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment