Skip to content

Instantly share code, notes, and snippets.

-module(connection).
-behaviour(gen_statem).
-export([start_link/1, request/2]).
-export([callback_mode/0, init/1]).
-export([disconnected/3, connected/3]).
%% Public API.
start_link(Opts) ->
@bottlenecked
bottlenecked / settings.json
Created May 23, 2019 19:51
Visual Studio Code settings for coloring additional Elixir-specific symbols (from my dark theme, but one can always experiment with the colors)
"editor.tokenColorCustomizations": {
"textMateRules": [
{
"name": "atoms and such",
"scope": "constant.other.symbol.elixir",
"settings": {
"foreground": "#489CC8"
}
},
{