Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mpenet/clojure-snippets
yasnippet 0.7.0+ snippets for clojure
https://github.com/mpenet/clojure-snippets
Last synced: 2 days ago
JSON representation
yasnippet 0.7.0+ snippets for clojure
- Host: GitHub
- URL: https://github.com/mpenet/clojure-snippets
- Owner: mpenet
- License: gpl-3.0
- Created: 2012-03-09T09:36:35.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2022-09-14T09:50:54.000Z (about 2 years ago)
- Last Synced: 2024-10-13T10:29:53.420Z (about 1 month ago)
- Language: Emacs Lisp
- Homepage:
- Size: 41 KB
- Stars: 57
- Watchers: 6
- Forks: 10
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# clojure-snippets
### package.el installation via MELPA
It can be more convenient to use Emacs's package manager to handle
installation for you if you use many elisp libraries. If you have
package.el but haven't added Marmalade, the community package source,
yet, add this to ~/.emacs.d/init.el:```lisp
(require 'package)
(add-to-list 'package-archives
'("melpa" . "http://melpa.milkbox.net/packages/") t)
(package-initialize)
```Then do this to load the package listing:
* M-x eval-buffer
* M-x package-refresh-contentsIf you use a version of Emacs prior to 24 that doesn't include
package.el, you can get it from http://bit.ly/pkg-el23.If you have an older ELPA package.el installed from tromey.com, you
should upgrade in order to support installation from multiple sources.
The ELPA archive is deprecated and no longer accepting new packages,
so the version there (1.7.1) is very outdated.From there you can install `clojure-snippets` or any other modes by choosing
them from a list:* M-x package-list-packages
Now, to install packages, move your cursor to them and press i. This
will mark the packages for installation. When you're done with
marking, press x, and ELPA will install the packages for you (under
~/.emacs.d/elpa/).* or using M-x package-install clojure-snippets
# License
clojure-snippets is licensed under GNU GPLv3