Skip to content

Instantly share code, notes, and snippets.

@pluiez
Last active May 3, 2022 13:04
Show Gist options
  • Save pluiez/a3bb5668021b40c8997a to your computer and use it in GitHub Desktop.
Save pluiez/a3bb5668021b40c8997a to your computer and use it in GitHub Desktop.
cVim config
map i goToInput
map <C-e> scrollFullPageUp
map <C-d> scrollFullPageDown
let right = "."
map . nextMatchPattern
let left = ","
map , previousMatchPattern
set smoothscroll
set completeonopen
set autoupdategist
let blacklists = ["https://coggle.it/diagram", "*://remotedesktop.google.com"]
" blacklists prefixed by '@' act as a whitelist
" this will enable the config block below on the domain 'kml.corp.kuaishou.com'
site '*://kml.corp.kuaishou.com' {
unmap p
unmap <Esc> " not working!
}
site '*.acfun.tv/v/*' {
unmap r
unmap j
unmap o
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment