Last active
June 30, 2021 00:43
-
-
Save AeroCross/8e4e624bffe64fc9d30321b80669bf8b 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
" 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