Hey, I’m looking for a package to manage bookmarks for inside Emacs.

I’ve tried the built-in functionality but the configuration contains a lot of junk which makes it hard to manage and share between machines.

  • glgmacs@alien.topB
    link
    fedilink
    English
    arrow-up
    1
    ·
    10 months ago

    I have my bookmark file as a bookmark itself: C-x r b -> mybookmarks
    then it can look as simple as this:

    (("init.el"
      (filename . "~/.emacs.d/init.el"))
     ("early-init.el"
      (filename . "~/.emacs.d/early-init.el"))
     ("bookmarks"
      (filename . "~/.emacs.d/bookmarks")))
    

    it is shared between different machines without problem.