Skip to content

Commit

Permalink
fix missing commas in vim config
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielSchuette committed Nov 18, 2021
1 parent adc3f61 commit 973d03c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions vim-config/configs.vim
Original file line number Diff line number Diff line change
Expand Up @@ -507,7 +507,7 @@ let g:ale_linters = {
\ 'vim': ['vint'],
\ 'elm': ['elm_ls'],
\ 'cpp': ['clangtidy', 'gcc'],
\ 'haskell': ['stack-build', 'hlint', 'stack-ghc', 'hls', 'hie']
\ 'haskell': ['stack-build', 'hlint', 'stack-ghc', 'hls', 'hie'],
\ 'lhaskell': ['stack-build', 'hlint', 'stack-ghc', 'hls', 'hie']
\}

Expand All @@ -531,7 +531,7 @@ let g:ale_fixers = {
\ 'json': ['prettier'],
\ 'python': ['isort', 'autopep8'],
\ 'elm': ['elm-format'],
\ 'haskell': ['hfmt'],
\ 'haskell': ['hfmt']
\}
" totally possible, but needs configuation: 'cpp': ['clang-format']

Expand Down

0 comments on commit 973d03c

Please sign in to comment.