Created
June 8, 2017 10:41
-
-
Save hadret/b7a339aa4105a516364359927f84881d 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
set nohud | |
set noautofocus " The opposite of autofocus; this setting stops | |
" sites from focusing on an input box when they load | |
set typelinkhints | |
let searchlimit = 30 | |
let scrollstep = 70 | |
let barposition = "bottom" | |
let hintcharacters = "asdghjkl;" | |
let defaultengine = "duckduckgo" | |
" alias ':d' to ':tabnew duckduckgo' | |
command d tabnew duckduckgo | |
let completionengines = ["duckduckgo"] | |
let searchalias d = "duckduckgo" | |
" Mappings | |
map a :tabnew duckduckgo<Space> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment