toshism / org-super-links

Package to create links with auto backlinks
GNU General Public License v3.0
274 stars 21 forks source link

How to install manually? #90

Open al3xandru opened 6 months ago

al3xandru commented 6 months ago

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 🙏🏽

al3xandru commented 6 months ago

Here's what I have done:

  1. check out the Github project into ~/.emacs.d/elpa
  2. 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.