Merge pull request #96 from txpipe/add-editor-config
Add .editorconfig, covering only *.ak file for now.
This commit is contained in:
commit
76575cb897
|
@ -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
|
|
@ -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)
|
||||
|
|
|
@ -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) |
|
Loading…
Reference in New Issue