aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2019-06-06 23:35:24 +1200
committerTom Ryder <tom@sanctum.geek.nz>2019-06-06 23:35:24 +1200
commitf9e44a9e8adc87ff04db9e4cde2d0ed61a9b26db (patch)
treec55783026561a4bfb71910f034826dcc82096c96
parentAdjust layout of longer :set+= path lines (diff)
downloaddotfiles-f9e44a9e8adc87ff04db9e4cde2d0ed61a9b26db.tar.gz
dotfiles-f9e44a9e8adc87ff04db9e4cde2d0ed61a9b26db.zip
Let's give 'showmatch' another try
But with a slightly quicker jump.
-rw-r--r--vim/vimrc6
1 files changed, 6 insertions, 0 deletions
diff --git a/vim/vimrc b/vim/vimrc
index 450121c7..31f7113c 100644
--- a/vim/vimrc
+++ b/vim/vimrc
@@ -125,6 +125,9 @@ 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
+
" Don't allow setting options via buffer content
set nomodeline
@@ -152,6 +155,9 @@ 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