Skip to content

Latest commit

 

History

History
24 lines (17 loc) · 496 Bytes

03-vim.md

File metadata and controls

24 lines (17 loc) · 496 Bytes

Vim

## ALE (recommended)

Install ALE and add these lines to .vimrc:

let g:ale_javascript_eslint_executable = 'healthier'
let g:ale_linters = {
\   'javascript': ['eslint'],
\}

Syntastic

Install Syntastic and add these lines to .vimrc:

let g:syntastic_javascript_checkers=['eslint']
let g:syntastic_javascript_eslint_exec = 'healthier'