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.

18 lines
619 B

  1. " set textwidth for automatic line wrap
  2. set tw=80
  3. set spell spelllang=en_us
  4. " disable real time linting, as it might be distracting
  5. let g:ale_lint_on_text_changed=0
  6. " complete english words
  7. setlocal dictionary+=/usr/share/dict/words
  8. " Remove this if you'd like to use fuzzy search
  9. call deoplete#custom#source(
  10. \ 'dictionary', 'matchers', ['matcher_head'])
  11. " If dictionary is already sorted, no need to sort it again.
  12. call deoplete#custom#source(
  13. \ 'dictionary', 'sorters', [])
  14. " Do not complete too short words
  15. call deoplete#custom#source(
  16. \ 'dictionary', 'min_pattern_length', 4)