diff options
author | Tom Ryder <tom@sanctum.geek.nz> | 2019-06-09 00:10:04 +1200 |
---|---|---|
committer | Tom Ryder <tom@sanctum.geek.nz> | 2019-06-09 00:10:04 +1200 |
commit | a37492688b63b8ca0d091f19f7b12a4d5774ea09 (patch) | |
tree | e25653c4cb5deaa55ffb44087c430918a6d9d21d /vim/vimrc | |
parent | Move 'runtimepath' manipulation to top of file (diff) | |
download | dotfiles-a37492688b63b8ca0d091f19f7b12a4d5774ea09.tar.gz dotfiles-a37492688b63b8ca0d091f19f7b12a4d5774ea09.zip |
Group 'showmatch' and 'matchtime' meaningfully
Diffstat (limited to 'vim/vimrc')
-rw-r--r-- | vim/vimrc | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -516,8 +516,11 @@ set listchars+=extends:> " Unwrapped text to screen right set listchars+=precedes:< " Unwrapped text to screen left set listchars+=nbsp:+ " Non-breaking spaces -" Show matching brackets a bit more briefly -set matchtime=3 +" I like the brief jump to the matching brackets provided by the 'showmatch' +" option; the only change I want is for it to be a little quicker, so we'll +" adjust that to 0.3 seconds. +" +set showmatch matchtime=3 " Don't allow setting options via buffer content set nomodeline @@ -539,9 +542,6 @@ set shortmess+=I " Prefix wrapped rows with three dots set showbreak=... -" Jump to matching bracket when typed in insert mode -set showmatch - " New window positioning set splitbelow " Below the current window, not above set splitright " Right of the current window, not left |