Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rvantonder/how-i-install-elm-from-scratch
https://github.com/rvantonder/how-i-install-elm-from-scratch
Last synced: 22 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/rvantonder/how-i-install-elm-from-scratch
- Owner: rvantonder
- Created: 2022-09-07T03:09:10.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-09-07T03:49:41.000Z (over 2 years ago)
- Last Synced: 2024-12-09T05:36:31.873Z (27 days ago)
- Language: Elm
- Size: 3.91 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# how-i-install-elm-from-scratch
```
brew install node
npm install -g elm elm-format -elm-test
```Download VSCode and install
[This VSCode emacs extension](https://marketplace.visualstudio.com/items?itemName=lfs.vscode-emacs-friendly)
[Download Fira code font](https://github.com/tonsky/FiraCode/releases)
> unzip > ttf > FiraCode-Regular.ttf > install font
Open `VSCode` > [this Elm extension](https://marketplace.visualstudio.com/items?itemName=Elmtooling.elm-ls-vscode)
> `command+shift+P` > `user settings.json`
```json
"editor.fontFamily": "Fira Code",
"terminal.integrated.fontFamily": "Fira Code",
"editor.fontLigatures": true,
"editor.formatOnSave": true,
"elmLS.onlyUpdateDiagnosticsOnSave": true
```Open `Gear` > `Keyboard Shortcuts` > type `hover` > `C-c C-t`
type `next problem` > `C-x C-c`
## test
```
cd basic
make
```open `basic/src/Main.elm` in VSCode, should see hovers, etc.