Last active
August 29, 2015 14:11
-
-
Save ScorpiusZ/3a236c309c23e923933f to your computer and use it in GitHub Desktop.
Chrome cVim vimrc
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
" Settings | |
set nohud | |
set nosmoothscroll | |
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 = "sadfjklewcmpgh" | |
let completionengines = ["google", "baidu", "github", "dogpile"] | |
let searchalias g = "google" " Create a shortcut for search engines. | |
" For example, typing ':tabnew g example' | |
" would act the same way as ':tabnew google example' | |
" Open all of these in a tab with `gnb` or open one of these with <N>goa where <N> | |
let qmark g = ["http://www.github.com"] | |
let qmark t = ["https://trello.com/b/RYoDfsTl/v2"] | |
let qmark v = ["http://www.v2ex.com/?tab=tech"] | |
let qmark z = ["http://www.zhihu.com/"] | |
let blacklists = ["https://mail.google.com/*", "*://mail.google.com/*"] | |
let mapleader = "," | |
" Mappings | |
map <Leader>r reloadTabUncached | |
map <Leader>x :restore<Space> | |
" Toggle the current HUD display value | |
map <C-h> :set hud!<CR> | |
" Switch between alphabetical hint characters and numeric hints | |
map <C-i> :set numerichints!<CR> | |
" yank the chosen hint url | |
map yf gy | |
" delete word | |
imap <C-w> deleteWord |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment