Skip to content

Commit

Permalink
feat(Codesnap): Add plugin to beautify snippets while sharing them.
Browse files Browse the repository at this point in the history
  • Loading branch information
daUnknownCoder committed Feb 23, 2024
1 parent 26dc99d commit d83a50c
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions lua/NeutronVim/plugins/Utils/miscellaneous.lua
Original file line number Diff line number Diff line change
Expand Up @@ -141,4 +141,18 @@ return {
lazy = true,
filetype = "yuck",
},
-- Beautiful CodeSnippet Viewing
{
"mistricky/codesnap.nvim",
build = "make",
lazy = true,
cmd = "CodeSnapPreviewOn",
config = function()
require("codesnap").setup({
mac_window_bar = true,
opacity = true,
watermark = (vim.fn.getcwd():gsub(os.getenv("HOME"), "~")),
})
end,
},
}

0 comments on commit d83a50c

Please sign in to comment.