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 = { window = {
opacity = 0.90; opacity = 1;
}; };
colors = { colors = {

View file

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