aboutsummaryrefslogtreecommitdiffstats
path: root/lua/nvim_lsp/hls.lua
diff options
context:
space:
mode:
Diffstat (limited to 'lua/nvim_lsp/hls.lua')
-rw-r--r--lua/nvim_lsp/hls.lua24
1 files changed, 0 insertions, 24 deletions
diff --git a/lua/nvim_lsp/hls.lua b/lua/nvim_lsp/hls.lua
deleted file mode 100644
index a55294dc..00000000
--- a/lua/nvim_lsp/hls.lua
+++ /dev/null
@@ -1,24 +0,0 @@
-local configs = require 'nvim_lsp/configs'
-local util = require 'nvim_lsp/util'
-
-configs.hls = {
- default_config = {
- cmd = {"haskell-language-server-wrapper", "--lsp"};
- filetypes = {"haskell", "lhaskell"};
- root_dir = util.root_pattern("*.cabal", "stack.yaml", "cabal.project", "package.yaml", "hie.yaml");
- };
-
- docs = {
- description = [[
-https://github.com/haskell/haskell-language-server
-
-Haskell Language Server
- ]];
-
- default_config = {
- root_dir = [[root_pattern("*.cabal", "stack.yaml", "cabal.project", "package.yaml", "hie.yaml")]];
- };
- };
-};
-
--- vim:et ts=2 sw=2