updated configs

This commit is contained in:
Bryan Ramos 2024-05-16 20:14:45 -04:00
parent bce5546790
commit 33d5892078
Signed by: bryan
GPG key ID: 6ABDCD144D6643C8
2 changed files with 24 additions and 24 deletions

View file

@ -5,7 +5,7 @@
};
window = {
opacity = 0.90;
opacity = 1;
};
colors = {

View file

@ -159,26 +159,26 @@ cmp.setup({
},
})
local dap = require("dap")
dap.adapters.haskell = {
type = "executable",
command = "haskell-debug-adapter",
args = { "--hackage-version=0.0.33.0" },
}
dap.configurations.haskell = {
{
type = "haskell",
request = "launch",
name = "Debug",
workspace = "${workspaceFolder}",
startup = "${file}",
stopOnEntry = true,
logFile = vim.fn.stdpath("data") .. "/haskell-dap.log",
logLevel = "WARNING",
ghciEnv = vim.empty_dict(),
ghciPrompt = "λ: ",
-- Adjust the prompt to the prompt you see when you invoke the ghci command below
ghciInitialPrompt = "λ: ",
ghciCmd = "stack ghci --test --no-load --no-build --main-is TARGET --ghci-options -fprint-evld-with-show",
},
}
--local dap = require("dap")
--dap.adapters.haskell = {
-- type = "executable",
-- command = "haskell-debug-adapter",
-- args = { "--hackage-version=0.0.33.0" },
--}
--dap.configurations.haskell = {
-- {
-- type = "haskell",
-- request = "launch",
-- name = "Debug",
-- workspace = "${workspaceFolder}",
-- startup = "${file}",
-- stopOnEntry = true,
-- logFile = vim.fn.stdpath("data") .. "/haskell-dap.log",
-- logLevel = "WARNING",
-- ghciEnv = vim.empty_dict(),
-- ghciPrompt = "λ: ",
-- -- Adjust the prompt to the prompt you see when you invoke the ghci command below
-- ghciInitialPrompt = "λ: ",
-- ghciCmd = "stack ghci --test --no-load --no-build --main-is TARGET --ghci-options -fprint-evld-with-show",
-- },
--}