Skip to content

Instantly share code, notes, and snippets.

@AeroCross
Last active June 30, 2021 00:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AeroCross/8e4e624bffe64fc9d30321b80669bf8b to your computer and use it in GitHub Desktop.
Save AeroCross/8e4e624bffe64fc9d30321b80669bf8b to your computer and use it in GitHub Desktop.
cVim Configuration
" Basic settings
set smoothscroll
set noautofocus
set noregexp
let scrollduration=200
let mapleader = "<Space>"
let barposition = "bottom"
" Set up search engines
let searchalias g = "google"
let searchalias w = "wikipedia"
command w tabnew wikipedia
command g tabnew google
" Unbind default, unnecessary motions
unmap s w $ 0 S D
" Unbind reverse image search
unmap mr gr ;
" Unbind tab navigation
unmap gt gT R E
" Allow Marks to be created
map ;* setMark
" Open link serach bar
map s openLinkSearchBar
" Full page navigation
map <C-u> scrollFullPageUp
map <C-d> scrollFullPageDown
" Don't enable cVim in the following sites
let blacklists = ["*://*google.com/*", "*://*.slack.com/*", "*://*.atlassian.net/*", "*://trello.com/*", "*://wasavi.appsweets.net/*", "*://configure.zsa.io/*", "*://checkvist.com/*"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment