Last active
June 29, 2017 15:41
-
-
Save holdhack/7ce0392c7db41492893fc52f6b1fc993 to your computer and use it in GitHub Desktop.
cVim configuration
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
" .cvimrc | |
" Settings | |
set autoupdategist | |
set noautofocus | |
set typelinkhints | |
let searchlimit = 40 | |
let scrollstep = 70 | |
let searchengine google = ["https://www.google.com", "https://www.google.com/#q=%s"] | |
let searchengine duckduckgo = ["https://duckduckgo.com", "https://duckduckgo.com/?q=%s"] | |
let searchengine wikipedia = ["https://en.wikipedia.org", "https://en.wikipedia.org/w/index.php?search=%s"] | |
let searchengine stackoverflow = ["https://stackoverflow.com", "https://stackoverflow.com/search?q=%s"] | |
let searchengine youtube = ["https://www.youtube.com", "https://www.youtube.com/results?search_query=%s"] | |
let searchengine rottentomatoes = ["https://www.rottentomatoes.com", "https://www.rottentomatoes.com/search/?search=%s"] | |
let searchengine wolframalpha = ["http://www.wolframalpha.com", "http://www.wolframalpha.com/input/?i=%s"] | |
let searchalias g = "google" | |
let searchalias ddg = "duckduckgo" | |
let searchalias wp = "wikipedia" | |
let searchalias so = "stackoverflow" | |
let searchalias yt = "youtube" | |
let searchalias rt = "rottentomatoes" | |
let searchalias wa = "wolframalpha" | |
let completionengines = ["google", "wikipedia"] | |
" blacklists prefixed by '@' act as a whitelist | |
let blacklists = ["*://mail.google.com/*","@*://mail.google.com/mail/*"] | |
let mapleader = "," |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment