💤 LazyGit and Gists

- Implement LazyGit and integrate with UI
- Implement Gists:
  - Create Gist from file or selection
  - Find existing gists and open them for editing
This commit is contained in:
2024-07-09 09:26:46 -04:00
parent 84f12e6524
commit 64715b251f
4 changed files with 114 additions and 55 deletions
+17
View File
@@ -0,0 +1,17 @@
return {
{
"Rawnly/gist.nvim",
cmd = { "GistCreate", "GistCreateFromFile", "GistsList" },
config = true,
},
-- `GistsList` opens the selected gif in a terminal buffer,
-- nvim-unception uses neovim remote rpc functionality to open the gist in an actual buffer
-- and prevents neovim buffer inception
{
"samjwill/nvim-unception",
lazy = false,
init = function()
vim.g.unception_block_while_host_edits = true
end,
},
}