aboutsummaryrefslogtreecommitdiff
path: root/vim
diff options
context:
space:
mode:
Diffstat (limited to 'vim')
-rw-r--r--vim/vimrc2
1 files changed, 1 insertions, 1 deletions
diff --git a/vim/vimrc b/vim/vimrc
index ccef0548..7449176b 100644
--- a/vim/vimrc
+++ b/vim/vimrc
@@ -569,7 +569,7 @@ if has('autocmd')
autocmd BufReadPre * let f=expand("<afile>")
\ | if getfsize(f) > g:bigfilesize
\ | setlocal nobackup nowritebackup noswapfile noundofile
- \ | if exists('&synmaxcol') | setlocal synmaxcol=10 | endif
+ \ | if exists('&synmaxcol') | setlocal synmaxcol=256 | endif
\ | endif
augroup end
endif