filetype-specifics.vim 453 B

1234567891011121314
  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. " RiotJS Tag support
  8. au BufNewFile,BufRead *.tag setlocal ft=javascript
  9. " Add spelling to markdown files
  10. autocmd BufRead,BufNewFile *.md setlocal spell