1
0
mirror of https://github.com/jdhao/nvim-config.git synced 2025-06-08 14:14:33 +02:00

Add settings for YAML

This commit is contained in:
jdhao 2021-02-23 23:38:00 +08:00
parent e79a43c58b
commit e337f8270a

4
ftplugin/yaml.vim Normal file
View File

@ -0,0 +1,4 @@
" Turn off syntax highlighting for large YAML files.
if line('$') > 500
setlocal syntax=OFF
endif