mirror of
https://github.com/keanuplayz/dotfiles.git
synced 2024-08-15 02:33:12 +00:00
8 lines
299 B
VimL
8 lines
299 B
VimL
let s:filetypes = ['haskell', 'lhaskell', 'chaskell']
|
|
let g:coc_filetypes += s:filetypes
|
|
let g:coc_user_config['languageserver.haskell'] = {
|
|
\ 'filetypes': s:filetypes,
|
|
\ 'command': 'hie-wrapper',
|
|
\ 'rootPatterns': ['.stack.yaml', 'cabal.config', 'package.yaml'],
|
|
\ 'initializationOptions': {},
|
|
\ }
|