This is a wrapper around the codesnap-rs package that integrates the screenshot functionality to Emacs.
- Download
codesnap-rsCLI following the instructions here
packages.el
(package! codesnap
:recipe (:host github :repo "erickisos/codesnap.el" :files ("*.el")))Optional: You can add your custom shortcuts inside your config.el
(use-package! codesnap
:config
(map! :localleader
:desc "Screenshot selected code" "S x" #'codesnap-selection
:desc "Show codesnap log" "S l" #'codesnap-show-log))
