diff --git a/.editorconfig b/.editorconfig new file mode 100644 index 00000000..0759674c --- /dev/null +++ b/.editorconfig @@ -0,0 +1,9 @@ +root = true + +[*.ak] +indent_style = space +indent_size = 2 +end_of_line = lf +charset = utf-8 +trim_trailing_whitespace = true +insert_final_newline = true diff --git a/book/src/SUMMARY.md b/book/src/SUMMARY.md index 8800aba4..4acb3abb 100644 --- a/book/src/SUMMARY.md +++ b/book/src/SUMMARY.md @@ -1,6 +1,7 @@ # Summary - [Introduction](./introduction.md) +- [Getting Started](./getting-started.md) - [Untyped Plutus Core](./uplc.md) - [Syntax](./uplc/syntax.md) - [Command-line utilities](./uplc/cli.md) diff --git a/book/src/getting-started.md b/book/src/getting-started.md new file mode 100644 index 00000000..cd0f8488 --- /dev/null +++ b/book/src/getting-started.md @@ -0,0 +1,22 @@ +# Getting Started + +## Installation + +### From Source + +```console +$ cargo install aiken +``` + +## QuickStart + +``` +$ aiken --help +``` + +## Editor Integrations + +| Editor | Plugin | +| --- | --- | +| VSCode | [TxPipe/vscode-aiken](https://github.com/txpipe/vscode-aiken/) | +| Vim/Neovim | [CardanoSolutions/aiken-vim](https://github.com/txpipe/aiken) |