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