mirror of
https://github.com/itme-brain/nixos.git
synced 2026-03-24 00:29:43 -04:00
updated configs
This commit is contained in:
parent
bce5546790
commit
33d5892078
2 changed files with 24 additions and 24 deletions
|
|
@ -5,7 +5,7 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
window = {
|
window = {
|
||||||
opacity = 0.90;
|
opacity = 1;
|
||||||
};
|
};
|
||||||
|
|
||||||
colors = {
|
colors = {
|
||||||
|
|
|
||||||
|
|
@ -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",
|
||||||
},
|
-- },
|
||||||
}
|
--}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue