1
0
mirror of https://github.com/jdhao/nvim-config.git synced 2025-06-08 14:14:33 +02:00
jdhao 3539207913 use 2 spaces for tabs by default
This removes a lot of code duplication. If we want to use 4 spaces, we
can set it separately in their ftplugin settings.
2022-10-15 11:28:15 +08:00

5 lines
100 B
VimL

" Turn off syntax highlighting for large YAML files.
if line('$') > 500
setlocal syntax=OFF
endif