Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jahfer/jahferh-pack
Emacs Live Pack config
https://github.com/jahfer/jahferh-pack
Last synced: about 2 months ago
JSON representation
Emacs Live Pack config
- Host: GitHub
- URL: https://github.com/jahfer/jahferh-pack
- Owner: jahfer
- Created: 2014-03-05T05:21:05.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2014-04-23T03:58:30.000Z (over 10 years ago)
- Last Synced: 2024-04-15T02:52:25.860Z (9 months ago)
- Language: Emacs Lisp
- Size: 152 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## User Pack Template
This is a template for your own user (or other purpose) pack.
### init.el
Use the file `init.el` for your own configuration elisp. If this starts
getting unwieldy then you might want to break out the config into
separate files which you can store in the config directory.### config
Files placed in the `config` dir may then be referenced and pulled into
your `init.el` via the fn `live-load-config-file`. For example, if you
have the file config/foo.el then you may load it in with:(live-load-config-file "foo.el")
### lib
If you want to pull in external libraries into your pack, then you
should place the libraries within the lib dir. To add a directory
within the pack's lib directory to the Emacs load path (so that it's
contents are available to require) you can use the fn
`live-add-pack-lib`. For example, if you have the external library bar
stored in lib which contains the file `baz.el` which you wish to
require, this may be achieved by:(live-add-pack-lib "bar")
(require 'baz)Have fun!