aboutsummaryrefslogtreecommitdiff
path: root/vim/vimrc
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2019-05-18 17:25:08 +1200
committerTom Ryder <tom@sanctum.geek.nz>2019-05-18 17:25:08 +1200
commitf297eeed38ae700c4246152ef6a2894ff8e23619 (patch)
treebe789529be39115a9aa966d57c01c782069ec6fc /vim/vimrc
parentReassure Vim that PuTTY is 'ttyfast' (diff)
downloaddotfiles-f297eeed38ae700c4246152ef6a2894ff8e23619.tar.gz
dotfiles-f297eeed38ae700c4246152ef6a2894ff8e23619.zip
Correct options order
Just an alphabetical issue...
Diffstat (limited to 'vim/vimrc')
-rw-r--r--vim/vimrc12
1 files changed, 6 insertions, 6 deletions
diff --git a/vim/vimrc b/vim/vimrc
index ffdcecb7..6664314f 100644
--- a/vim/vimrc
+++ b/vim/vimrc
@@ -190,6 +190,12 @@ if has('persistent_undo')
set undodir^=$MYVIMRUNTIME/cache/undo//
endif
+" Let me move beyond buffer text in visual block mode
+set virtualedit+=block
+
+" Never beep at me
+set visualbell t_vb=
+
" Tab completion settings
set wildignore=*~
\,*.7z
@@ -218,12 +224,6 @@ if exists('+wildignorecase')
endif
set wildmode=list:longest " Tab press completes and lists
-" Let me move beyond buffer text in visual block mode
-set virtualedit+=block
-
-" Never beep at me
-set visualbell t_vb=
-
" Load filetype settings, plugins, and maps
let maplocalleader = ','
filetype plugin indent on