https://github.com/10sr/emacs-lisp
My Emacs Lisp Libraries
https://github.com/10sr/emacs-lisp
Last synced: over 1 year ago
JSON representation
My Emacs Lisp Libraries
- Host: GitHub
- URL: https://github.com/10sr/emacs-lisp
- Owner: 10sr
- Created: 2010-10-30T13:35:35.000Z (over 15 years ago)
- Default Branch: master
- Last Pushed: 2024-08-12T13:46:05.000Z (almost 2 years ago)
- Last Synced: 2025-01-16T09:07:58.327Z (over 1 year ago)
- Language: Emacs Lisp
- Homepage: https://10sr.github.io/emacs-lisp/elpa/
- Size: 1.79 MB
- Stars: 4
- Watchers: 6
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.adoc
Awesome Lists containing this project
README
Emacs lisp
==========
10sr
v0.0.1
image:https://travis-ci.org/10sr/emacs-lisp.svg?branch=master["Build Status", link="https://travis-ci.org/10sr/emacs-lisp"]
Some small Emacs lisp libraries.
Access Repository
-----------------
Some packages in this repository can be installed with `package.el`.
To enable this repository, add lines to your init file:
----
(setq package-archives
`(,@package-archives
("10sr-el" . "http://10sr.github.io/emacs-lisp/elpa/")))
----
Manage Repository
-----------------
Update Packages
~~~~~~~~~~~~~~~
Issue
----
make elpa
----
Add Packages
~~~~~~~~~~~~
Put a file into `recipes/` dir:
----
(package-name :fetcher github
:repo "10sr/package-name-el"
:branch "target-branch")
----
And issue `make elpa`.