Skip to content

Instantly share code, notes, and snippets.

@hfukada
Last active January 30, 2017 17:11
Show Gist options
  • Save hfukada/e9bcc15fd3d220434d96381036f6bb40 to your computer and use it in GitHub Desktop.
Save hfukada/e9bcc15fd3d220434d96381036f6bb40 to your computer and use it in GitHub Desktop.
cvim_config
" Settings
"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 = 20
let scrollstep = 50
let barposition = "top"
let hintcharacters = "asdfjkl"
let completionengines = ["google", "amazon"]
let mapleader = ","
" Mappings
unmap d
unmap u
unmap B
unmap b
map d x
map u X
map y yy
map <Leader>r reloadTabUncached
" You can use <Space>, which is interpreted as a
" literal " " character, to enter buffer completion mode
map b :buffer<Space>
map <C-d> scrollPageDown
map <C-u> scrollPageUp
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment