615 current 2024-05-14 20:54:38 24.05.20240512.2057814 6.8.6-zen1 *

This commit is contained in:
zackartz 2024-05-14 20:54:43 -04:00
parent ced735cc33
commit 97e6eb7e1e
No known key found for this signature in database
GPG key ID: 5B53E53A9A514DBA
5 changed files with 21 additions and 1 deletions

View file

@ -37,6 +37,12 @@ return {
-- Neogit
[l("ng")] = { cmd("Neogit"), fmt("Git", "Open Neogit") },
-- Cloak
[l("ct")] = { cmd("CloakToggle"), "Cloak Toggle" },
-- Freeze
[l("sc")] = { cmd("freeze"), "Take code screenshot" },
-- Rest
[l("rr")] = { cmd("Rest run"), "Run request in Rest" },

View file

@ -0,0 +1,12 @@
return {
"isabelroses/charm-freeze.nvim",
config = function()
require("charm-freeze").setup({
command = "freeze",
output = function()
return "./" .. os.date("%Y-%m-%d") .. "_freeze.png"
end,
theme = "catppuccin-mocha",
})
end,
}

View file

@ -126,7 +126,6 @@ M.open_dapui = function()
end
M.close_dapui = function()
require("neo-tree").show()
require("dapui").close()
end