Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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!