From 13f20ff3287734d5b9a3b48a1b844f448c8b05b2 Mon Sep 17 00:00:00 2001 From: Francisco Lopes Date: Wed, 12 Aug 2020 13:20:20 -0300 Subject: [PATCH] Simplify coc.nvim instructions --- README.md | 18 ++---------------- 1 file changed, 2 insertions(+), 16 deletions(-) diff --git a/README.md b/README.md index f284ea0ba4..86c0865ad4 100644 --- a/README.md +++ b/README.md @@ -386,22 +386,8 @@ Then issue `:CocConfig` and add the following to your Coc config file. "haskell": { "command": "haskell-language-server-wrapper", "args": ["--lsp"], - "rootPatterns": [ - "hie.yaml", - "*.cabal", - "stack.yaml", - "cabal.project", - "package.yaml" - ], - "filetypes": [ - "hs", - "lhs", - "haskell" - ], - "initializationOptions": { - "haskell": { - } - } + "rootPatterns": ["*.cabal", "stack.yaml", "cabal.project", "package.yaml", "hie.yaml"], + "filetypes": ["haskell", "lhaskell"] } } ```