Last active
August 29, 2015 14:07
-
-
Save callahanrts/7d2450fedb085d1eec7f to your computer and use it in GitHub Desktop.
Vim configuration for cvim
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 nosmoothscroll | |
set noautofocus | |
let mapleader = " " | |
let barposition = "bottom" | |
let scrollstep = 70 | |
let searchlimit = 50 | |
let blacklists = ["https://mail.google.com/*"] | |
" let autofocus = false | |
let hintcharacters = "uiopjklmn" | |
let completionengines = ["google"] | |
let searchalias g = "google" | |
" Mappings | |
map o :open<Space> | |
map <M-j> :tabprevious<CR> | |
map <M-k> :tabnext<CR> | |
map u :undo<CR> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment