We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8038f94 commit e8c06ffCopy full SHA for e8c06ff
.gitpod.dockerfile
@@ -0,0 +1,7 @@
1
+FROM gitpod/workspace-base
2
+
3
+RUN curl https://nim-lang.org/choosenim/init.sh -sSf -o install_nim.sh \
4
+ && chmod +x ./install_nim.sh \
5
+ && ./install_nim.sh -y \
6
+ && rm install_nim.sh \
7
+ && echo "export PATH=/home/$(whoami)/.nimble/bin:\$PATH" >> ~/.bashrc
.gitpod.yml
@@ -0,0 +1,8 @@
+---
+image:
+ file: .gitpod.dockerfile
+vscode:
+ extensions:
+ - nimsaem.nimvscode
8
+...
0 commit comments