Skip to content

Commit

Permalink
feat: haskell-debug-adapter (#1)
Browse files Browse the repository at this point in the history
* fix: working haskell debug adapter
---------

Co-authored-by: Oli <[email protected]>
  • Loading branch information
2 people authored and mehalter committed May 3, 2023
1 parent d18f633 commit d009963
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions lua/astrocommunity/pack/haskell/haskell.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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,
},
}

0 comments on commit d009963

Please sign in to comment.