Formatting Erlang code in Visual Studio Code
The ErlangLS extension for VS Code includes formatting, using rebar3_format
. I’d prefer to use erlfmt
, so here’s how I set it up.
These instructions are mostly lifted from https://marketplace.visualstudio.com/items?itemName=szTheory.erlang-formatter.
Install rebar3
cd ~/projects
git clone https://github.com/erlang/rebar3.git
cd rebar3
./bootstrap
./rebar3 local install
export PATH=$PATH:~/.cache/rebar3/bin
Choose default rebar3 formatter
mkdir -p ~/.config/rebar3/
echo -e "{plugins, [erlfmt]}." >> ~/.config/rebar3/rebar.config
Install VS Code Extensions
- Install both
erlang-ls.erlang-ls
andsztheory.erlang-formatter
extensions.
Configure VS Code
Configure VS Code to use sztheory.erlang-formatter
:
"[erlang]": {
"editor.defaultFormatter": "szTheory.erlang-formatter",
"editor.formatOnSave": false
},
"erlangFormatter.formatter": "erlfmt",
Note that I turned off formatOnSave
and chose erlfmt
instead of
rebar3_format
.