dotemacs

My Emacs configuration
git clone git://git.entf.net/dotemacs
Log | Files | Refs | LICENSE

README.org (865B)


      1 #+title: Denote-Refs - Show links and backlinks in Denote notes
      2 
      3 Denote-Refs shows the list of linked file and backlinks to current
      4 file.  This list is shown just below the front matter of your note.
      5 To enable do =M-x denote-refs-mode=.  You can also enable it in your
      6 ~denote-directory~ with =.dir-locals.el=.
      7 
      8 * Installation
      9 
     10 Denote-Refs isn't available on any ELPA right now.  So, you have to
     11 follow one of the following methods:
     12 
     13 ** Quelpa
     14 
     15 #+begin_src emacs-lisp
     16 (quelpa '(denote-refs
     17           :fetcher git
     18           :url "https://codeberg.org/akib/emacs-denote-refs.git"))
     19 #+end_src
     20 
     21 ** Straight.el
     22 
     23 #+begin_src emacs-lisp
     24 (straight-use-package
     25  '(denote-refs
     26    :type git
     27    :repo "https://codeberg.org/akib/emacs-denote-refs.git"))
     28 #+end_src
     29 
     30 ** Manual
     31 
     32 Download the ~denote-refs.el~ file and put it in your ~load-path~.
     33 You need to have Denote installed.