Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dvcrn/atom-niji
Rainbow parenthesis for atom
https://github.com/dvcrn/atom-niji
Last synced: 6 days ago
JSON representation
Rainbow parenthesis for atom
- Host: GitHub
- URL: https://github.com/dvcrn/atom-niji
- Owner: dvcrn
- Created: 2015-12-11T10:15:25.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2015-12-11T10:15:41.000Z (almost 9 years ago)
- Last Synced: 2023-03-13T10:55:30.862Z (over 1 year ago)
- Language: Clojure
- Size: 3.91 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# niji
I am a atom plugin written in clojurescript! Pretty nifty, huh? 😄
## Development
If you want to export a function to atom for use with atom commands, make sure to add them to `dev/build.clj` like so:
```
:foo 'niji.core/foo
:bar 'niji.core/bar
```## Compiling and running
To compile me with a self-reloading loop, use:
```
lein run -m build/dev-repl
```To compile me with a self-compiling loop but without live-reload:
```
lein run -m build/dev
```To compile me for release (`:simple` optimizations), use
```
lein run -m build/release
```After you have done that, go into the `plugin/` folder and run
```
apm link
```niji should now be installed inside atom!