All of my important config files
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 lines
278 B

  1. " set textwidth for automatic line wrap
  2. set tw=80
  3. set spell spelllang=en_us
  4. set conceallevel=0
  5. " disable real time linting, as it might be distracting
  6. let g:ale_lint_on_text_changed=0
  7. let g:ale_fixers = {}
  8. let g:ale_fixers['markdown'] = ['prettier']
  9. let g:ale_fix_on_save = 1