doing elixir and elm stuff now

This commit is contained in:
Haak Saxberg 2016-09-16 23:14:44 -07:00
parent 51ab560cbf
commit aba7f89b92
6 changed files with 538 additions and 269 deletions

View file

@ -0,0 +1,10 @@
let g:neomake_elixir_mix_maker = {
\ 'exe' : 'mix',
\ 'args': ['compile', '--warnings-as-errors'],
\ 'cwd': getcwd(),
\ 'errorformat':
\ '** %s %f:%l: %m,' .
\ '%f:%l: warning: %m'
\ }
let g:neomake_elixir_enabled_makers = ['mix']