Skip to content

Instantly share code, notes, and snippets.

@emelent
Last active December 17, 2021 16:45
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 emelent/7daadb619b4ce33da917d3e801a9fafa to your computer and use it in GitHub Desktop.
Save emelent/7daadb619b4ce33da917d3e801a9fafa to your computer and use it in GitHub Desktop.
my cvim config
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"
" alias ':g' to ':tabnew google'
command g tabnew google
let completionengines = ["google", "amazon", "imdb", "dogpile"]
let searchalias g = "google" " Create a shortcut for search engines.
" For example, typing ':tabnew g example'
" would act the same way as ':tabnew google example'
let mapleader = ","
" Mappings
map <Leader>r reloadTabUncached
map <Leader>x :restore<Space>
" You can use <Space>, which is interpreted as a
" literal " " character, to enter buffer completion mode
map gb :buffer<Space>
" Toggle the current HUD display value
map <C-h> :set hud!<CR>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment