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