From d00996364c3fd56502660b543b5b6e825b66c7bd Mon Sep 17 00:00:00 2001 From: Samuel Cobb <68509699+sjcobb2022@users.noreply.github.com> Date: Tue, 2 May 2023 12:14:10 +0100 Subject: [PATCH] feat: haskell-debug-adapter (#1) * fix: working haskell debug adapter --------- Co-authored-by: Oli <57495944+owittek@users.noreply.github.com> --- lua/astrocommunity/pack/haskell/haskell.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lua/astrocommunity/pack/haskell/haskell.lua b/lua/astrocommunity/pack/haskell/haskell.lua index 047fddb86..a2aecf013 100644 --- a/lua/astrocommunity/pack/haskell/haskell.lua +++ b/lua/astrocommunity/pack/haskell/haskell.lua @@ -38,14 +38,14 @@ return { dependencies = { "nvim-lua/plenary.nvim", "nvim-telescope/telescope.nvim", -- optional - { - "jay-babu/mason-nvim-dap.nvim", - opts = function(_, opts) opts.ensure_installed = utils.list_insert_unique(opts.ensure_installed, "haskell") end, - }, }, }, { "williamboman/mason-lspconfig.nvim", opts = function(_, opts) opts.ensure_installed = utils.list_insert_unique(opts.ensure_installed, "hls") end, }, + { + "jay-babu/mason-nvim-dap.nvim", + opts = function(_, opts) opts.ensure_installed = utils.list_insert_unique(opts.ensure_installed, "haskell") end, + }, }