Background
I store Emacs my configuration in a .emacs and separate custom file. I would like to store both in a public repository like Github. I also use filesets which saves filenames & file paths in one of these files. Data associated with the variable filesets-data
gets placed in my custom file because I set the variable custom-file
in my .emacs
like this:
(setq custom-file "~/.emacs-custom-work.el")
I use Emacs at work and I don't want to put private data (filenames & paths) in public repositories.
Question Detail
I need a way to store data associated with filesets (Emacs uses the variable filesets-data
) in a file separate from my custom file (also not in other standard Emacs init files). I will not place this separate file (which would be a dedicated place to store filesets-data
) in a public repository.
Not looking for alternatives to the functionality provided by the filesets package at this time.
Currently running Emacs 24.4 on Ubuntu 14.4 at work.
The Emacs manual and the emacswiki site are usually helpful but not with this.