feat(nvim-lsp): add .git to hls root_dir

This commit is contained in:
Felix Schröter 2020-08-28 01:26:05 +02:00
parent 515cc30767
commit d526240a7c
No known key found for this signature in database
GPG key ID: 910ACB9F6BD26F58

View file

@ -59,7 +59,7 @@ configs.hls = {
cmd = {"haskell-language-server-wrapper","--lsp"};
filetypes = {"haskell","lhaskell"};
root_dir = util.root_pattern(
"*.cabal", "stack.yaml", "cabal.project", "package.yaml", "hie.yaml");
"*.cabal", "stack.yaml", "cabal.project", "package.yaml", "hie.yaml", ".git");
settings = {};
};
}