Last active
February 23, 2020 12:00
-
-
Save b-rodrigues/b439f2cfab0907a5aeb9895d79ad871a to your computer and use it in GitHub Desktop.
my cvimrc
This file contains hidden or 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 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 locale = "uk" " Current choices are 'jp' and 'uk'. This allows cVim to use sites like google.co.uk | |
" or google.co.jp to search rather than google.com. Support is currently limited. | |
" Let me know if you need a different locale for one of the completion/search engines | |
let hintcharacters = "cntsr" | |
map s scrollUp | |
map t scrollDown | |
map v tabprevious | |
map l tabnext |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment