4 lines
100 B
VimL
4 lines
100 B
VimL
" Turn off syntax highlighting for large YAML files.
|
|
if line('$') > 500
|
|
setlocal syntax=OFF
|
|
endif
|