Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save stianeklund/a4c6946a0b58ad494eedbf5ba971fe2a to your computer and use it in GitHub Desktop.
Save stianeklund/a4c6946a0b58ad494eedbf5ba971fe2a to your computer and use it in GitHub Desktop.
cVim
" General settings
set nohud
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 = 30
let scrollstep = 70
let barposition = "bottom"
let hintcharacters = "ashtneoi"
" Search engines
let searchengine baidu = "http://www.baidu.com/s?wd=%s"
let completionengines = ["google", "amazon", "imdb"]
" Mappings
let mapleader = "Space"
map <Leader>b :buffer<Space>
map <Leader>x :restore<Space>
" open chrome UI
map <Leader>cb :open! chrome://bookmarks<CR>
map <Leader>cd :open! chrome://downloads<CR>
map <Leader>cs :open! chrome://settings<CR>
map <Leader>ch :open! chrome://history<CR>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment