Merge pull request #96 from txpipe/add-editor-config

Add .editorconfig, covering only *.ak file for now.
This commit is contained in:
Matthias Benkort 2022-11-10 16:10:16 +01:00 committed by GitHub
commit 76575cb897
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 32 additions and 0 deletions

9
.editorconfig Normal file
View File

@ -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

View File

@ -1,6 +1,7 @@
# Summary # Summary
- [Introduction](./introduction.md) - [Introduction](./introduction.md)
- [Getting Started](./getting-started.md)
- [Untyped Plutus Core](./uplc.md) - [Untyped Plutus Core](./uplc.md)
- [Syntax](./uplc/syntax.md) - [Syntax](./uplc/syntax.md)
- [Command-line utilities](./uplc/cli.md) - [Command-line utilities](./uplc/cli.md)

View File

@ -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) |