Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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`.