blob: 9410fa1fe3af5e69726900106d7c582bf19233f8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Elixir Tooling
Disclaimer: This file is intended to document learnings about tooling text editors to work with Elixir.
## Emacs
### Useful plugins
* `Elixir-mode`: font-locking, indentation, etc.
* `Alchemist`: IEx, mix, autocompletion via `company`, etc.
* `Flycheck`: works with linters, `Dogma` and `Credo`
When running an umbrella app, to allow `Alchemist` to properly jump to function definitions run...
```bash
$ ln -sf ../../_build _build
```
...where `../../_build` is the path to the umbrella root directory.
|