diff options
Diffstat (limited to 'ale_linters/haskell/hls.vim')
-rw-r--r-- | ale_linters/haskell/hls.vim | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ale_linters/haskell/hls.vim b/ale_linters/haskell/hls.vim index ae0556a4..7f9efc38 100644 --- a/ale_linters/haskell/hls.vim +++ b/ale_linters/haskell/hls.vim @@ -4,6 +4,7 @@ " <devildead13@gmail.com>). It search more project root files. " call ale#Set('haskell_hls_executable', 'haskell-language-server-wrapper') +call ale#Set('haskell_hls_config', {}) function! ale_linters#haskell#hls#FindRootFile(buffer) abort let l:serach_root_files = [ @@ -60,4 +61,5 @@ call ale#linter#Define('haskell', { \ 'command': function('ale_linters#haskell#hls#GetCommand'), \ 'executable': {b -> ale#Var(b, 'haskell_hls_executable')}, \ 'project_root': function('ale_linters#haskell#hls#GetProjectRoot'), +\ 'lsp_config': {b -> ale#Var(b, 'haskell_hls_config')}, \}) |