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
|
-- Neogit
|
||||||
[l("ng")] = { cmd("Neogit"), fmt("Git", "Open 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
|
-- Rest
|
||||||
[l("rr")] = { cmd("Rest run"), "Run request in 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
|
end
|
||||||
|
|
||||||
M.close_dapui = function()
|
M.close_dapui = function()
|
||||||
require("neo-tree").show()
|
|
||||||
require("dapui").close()
|
require("dapui").close()
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -2,6 +2,7 @@
|
||||||
config,
|
config,
|
||||||
pkgs,
|
pkgs,
|
||||||
lib,
|
lib,
|
||||||
|
inputs,
|
||||||
...
|
...
|
||||||
}: let
|
}: let
|
||||||
nvimDir = "/home/${config.home.username}/nixos/modules/home-manager/vim";
|
nvimDir = "/home/${config.home.username}/nixos/modules/home-manager/vim";
|
||||||
|
|
@ -33,6 +34,7 @@ in {
|
||||||
html-tidy
|
html-tidy
|
||||||
cmake
|
cmake
|
||||||
fzf
|
fzf
|
||||||
|
charm-freeze
|
||||||
gcc
|
gcc
|
||||||
gnumake
|
gnumake
|
||||||
nodejs
|
nodejs
|
||||||
|
|
|
||||||
|
|
@ -50,6 +50,7 @@
|
||||||
"nvim-ufo": { "branch": "main", "commit": "a5390706f510d39951dd581f6d2a972741b3fa26" },
|
"nvim-ufo": { "branch": "main", "commit": "a5390706f510d39951dd581f6d2a972741b3fa26" },
|
||||||
"nvim-web-devicons": { "branch": "master", "commit": "e37bb1feee9e7320c76050a55443fa843b4b6f83" },
|
"nvim-web-devicons": { "branch": "master", "commit": "e37bb1feee9e7320c76050a55443fa843b4b6f83" },
|
||||||
"overseer.nvim": { "branch": "master", "commit": "226789848772d99b3b61363b6ea7663882f8c05e" },
|
"overseer.nvim": { "branch": "master", "commit": "226789848772d99b3b61363b6ea7663882f8c05e" },
|
||||||
|
"playground": { "branch": "master", "commit": "ba48c6a62a280eefb7c85725b0915e021a1a0749" },
|
||||||
"plenary.nvim": { "branch": "master", "commit": "08e301982b9a057110ede7a735dd1b5285eb341f" },
|
"plenary.nvim": { "branch": "master", "commit": "08e301982b9a057110ede7a735dd1b5285eb341f" },
|
||||||
"promise-async": { "branch": "main", "commit": "93540c168c5ed2b030ec3e6c40ab8bbb85e36355" },
|
"promise-async": { "branch": "main", "commit": "93540c168c5ed2b030ec3e6c40ab8bbb85e36355" },
|
||||||
"rest.nvim": { "branch": "main", "commit": "f96edb54a2940322bc7ed81a1031be04db7d3a99" },
|
"rest.nvim": { "branch": "main", "commit": "f96edb54a2940322bc7ed81a1031be04db7d3a99" },
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue