filetype-specifics.vim 369 B

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