From a9b9e432efe6adaf9c93b199d7b114dda0a1ab96 Mon Sep 17 00:00:00 2001 From: Nicole Dresselhaus Date: Wed, 8 Oct 2025 10:33:41 +0200 Subject: [PATCH] finally no hls + haskell-tools, but only ht --- nvim-config/lua/plugins/mason-exclude-hls.lua | 10 ++++++++++ nvim-config/lua/plugins/no-haskell-lsp.lua | 13 ------------- 2 files changed, 10 insertions(+), 13 deletions(-) delete mode 100644 nvim-config/lua/plugins/no-haskell-lsp.lua diff --git a/nvim-config/lua/plugins/mason-exclude-hls.lua b/nvim-config/lua/plugins/mason-exclude-hls.lua index d25f7ec..5bc15c4 100644 --- a/nvim-config/lua/plugins/mason-exclude-hls.lua +++ b/nvim-config/lua/plugins/mason-exclude-hls.lua @@ -19,4 +19,14 @@ return { "mason-org/mason.nvim", opts = { PATH = "append" }, }, + { + "neovim/nvim-lspconfig", + opts = { + setup = { + hls = function() + return true + end, + }, + }, + }, } diff --git a/nvim-config/lua/plugins/no-haskell-lsp.lua b/nvim-config/lua/plugins/no-haskell-lsp.lua deleted file mode 100644 index e9a6514..0000000 --- a/nvim-config/lua/plugins/no-haskell-lsp.lua +++ /dev/null @@ -1,13 +0,0 @@ -return { - { - "neovim/nvim-lspconfig", - opts = { - servers = { - haskell_language_server = false, - haskell_language_server_wrapper = false, - hls = false, - hie = false, - }, - }, - }, -}