this post was submitted on 12 Nov 2023
1 points (100.0% liked)

Emacs

310 readers
1 users here now

A community for the timeless and infinitely powerful editor. Want to see what Emacs is capable of?!

Get Emacs

Rules

  1. Posts should be emacs related
  2. Be kind please
  3. Yes, we already know: Google results for "emacs" and "vi" link to each other. We good.

Emacs Resources

Emacs Tutorials

Useful Emacs configuration files and distributions

Quick pain-saver tip

founded 1 year ago
MODERATORS
 

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.

you are viewing a single comment's thread
view the rest of the comments
[–] glgmacs@alien.top 1 points 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.