Files
neovim-config/lua/plugins/gists.lua
T
rootiest 4990475a9a 🎨 Aesthetics
- Consistent look across plugin files
2024-07-11 01:37:48 -04:00

22 lines
709 B
Lua

-- -----------------------------------------------------------------------------
-- ---------------------------------- Gists ------------------------------------
-- -----------------------------------------------------------------------------
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,
},
}