615 current 2024-05-14 20:54:38 24.05.20240512.2057814 6.8.6-zen1 *
This commit is contained in:
parent
ced735cc33
commit
97e6eb7e1e
5 changed files with 21 additions and 1 deletions
|
|
@ -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" },
|
||||
|
||||
|
|
|
|||
12
modules/home-manager/vim/config/lua/plugins/tools/freeze.lua
Normal file
12
modules/home-manager/vim/config/lua/plugins/tools/freeze.lua
Normal 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,
|
||||
}
|
||||
|
|
@ -126,7 +126,6 @@ M.open_dapui = function()
|
|||
end
|
||||
|
||||
M.close_dapui = function()
|
||||
require("neo-tree").show()
|
||||
require("dapui").close()
|
||||
end
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue