| 1234567891011 |
- " Formatting for json files
- "au FileType json setlocal equalprg=python\ -m\ json.tool
- " yaml highlighting
- au BufNewFile,BufRead *.yaml,*.yml so ~/.vim/plugged/yaml.vim/colors/yaml.vim
- " `.conf` and `.ini` files should not force text to the next line.
- au BufEnter *.conf,*.ini setlocal textwidth=0
- " Add spelling to markdown files
- au FileType markdown setlocal spell
|