org-super-links
org-super-links copied to clipboard
How to install manually?
Hi,
Would it be possible to provide some details on how to get this package installed manually? straight
and quelpa
both require custom setup. In addition, quelpa has an update that the owner is looking for a maintainer. thank you 🙏🏽
Here's what I have done:
- check out the Github project into
~/.emacs.d/elpa
- have in the
init.el
:
(require 'org-super-links "~/.emacs.d/elpa/org-super-links/org-super-links.el")
(with-eval-after-load 'org-super-links
(bind-key "C-c s s" 'org-super-links-link org-mode-map)
(bind-key "C-c s l" 'org-super-links-store-link org-mode-map)
(bind-key "C-c s C-l" 'org-super-links-insert-link org-mode-map))
I assume it would be even better to have the above snippet into a hook related to org, but I'm not familiar enough with Emacs & Lisp to put that together.