commit 09168c3f145a140bc1aa672dbaba134683a513a7
parent a0f6a5e04dbbc6f0fe10cc532889a5c545398325
Author: Alex Balgavy <a.balgavy@gmail.com>
Date: Fri, 18 Jan 2019 01:01:06 +0100
Move vim belloff to general settings
Former-commit-id: 211d11df733e9ce47fe8b421d13aacf3d309eb6f
Diffstat:
2 files changed, 5 insertions(+), 6 deletions(-)
diff --git a/vim/editor.vimrc b/vim/editor.vimrc
@@ -56,11 +56,6 @@ set foldnestmax=10 " unless callback-hell JS
set showmatch
set matchtime=2
-" Since belloff isn't always an option
-if exists("&belloff")
- set belloff=showmatch " Disable beeping if no match is found
-endif
-
" Searching
set hlsearch " highlight matches
set incsearch " search while typing
diff --git a/vim/general.vimrc b/vim/general.vimrc
@@ -91,4 +91,8 @@ set modelines=5 "within the first/last 5 lines
set t_ZH=[3m
set t_ZR=[23m
-let tlist_vimwiki_settings = 'wiki;h:Headers'
+" Since belloff isn't always an option
+if exists("&belloff")
+ set belloff=showmatch,esc,shell,wildmode,backspace " Disable beeping if no match is found
+endif
+