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.

22 lines
574 B

  1. if has("nvim")
  2. else
  3. " Syntastic {{{
  4. "let g:syntastic_javascript_checkers = ['standard']
  5. let g:syntastic_javascript_checkers = ['eslint']
  6. let g:syntastic_javascript_eslint_exe = '$(npm bin)/eslint'
  7. let g:syntastic_javascript_eslint_args = ['--fix']
  8. " And also for vue
  9. let g:syntastic_vue_checkers = ['eslint']
  10. let g:syntastic_vue_eslint_exe = '$(npm bin)/eslint'
  11. let g:syntastic_vue_eslint_args = ['--fix']
  12. "}}}
  13. endif
  14. "autocmd bufwritepost *.js silent !standard --fix %
  15. set wildignore+=node_modules
  16. set tabstop=2
  17. set shiftwidth=2