Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/10sr/emacs-lisp
My Emacs Lisp Libraries
https://github.com/10sr/emacs-lisp
Last synced: 2 days 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 (about 14 years ago)
- Default Branch: master
- Last Pushed: 2024-08-12T13:46:05.000Z (5 months ago)
- Last Synced: 2024-11-15T20:41:02.905Z (2 months 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.1image: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`.