From ded93ed2febdbaaccb035002fa7e14a0044ae4a2 Mon Sep 17 00:00:00 2001 From: Sanchayan Maity Date: Wed, 16 Sep 2020 13:03:41 +0530 Subject: [PATCH] nvim: HLS is now supported in nvim-lspconfig Signed-off-by: Sanchayan Maity --- nvim/.config/nvim/lua/nvim_lsp/hls.lua | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 nvim/.config/nvim/lua/nvim_lsp/hls.lua diff --git a/nvim/.config/nvim/lua/nvim_lsp/hls.lua b/nvim/.config/nvim/lua/nvim_lsp/hls.lua deleted file mode 100644 index ccf8631..0000000 --- a/nvim/.config/nvim/lua/nvim_lsp/hls.lua +++ /dev/null @@ -1,12 +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" }; - root_dir = util.root_pattern("hie.yaml"); - }; -}; - --- vim:et ts=2 sw=2