diff --git a/src/user/modules/gui/modules/alacritty/config/alacritty.nix b/src/user/modules/gui/modules/alacritty/config/alacritty.nix index efd0c73..477b160 100644 --- a/src/user/modules/gui/modules/alacritty/config/alacritty.nix +++ b/src/user/modules/gui/modules/alacritty/config/alacritty.nix @@ -5,7 +5,7 @@ }; window = { - opacity = 0.90; + opacity = 1; }; colors = { diff --git a/src/user/modules/utils/modules/neovim/config/lazyvim/lua/config/autocmds.lua b/src/user/modules/utils/modules/neovim/config/lazyvim/lua/config/autocmds.lua index 1464cb0..27dea76 100644 --- a/src/user/modules/utils/modules/neovim/config/lazyvim/lua/config/autocmds.lua +++ b/src/user/modules/utils/modules/neovim/config/lazyvim/lua/config/autocmds.lua @@ -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", +-- }, +--}