-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.gitpod.yml
More file actions
28 lines (24 loc) · 718 Bytes
/
.gitpod.yml
File metadata and controls
28 lines (24 loc) · 718 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
image: gitpod/workspace-base
tasks:
- name: Setup workspace
command: |
sudo apt update; sudo apt upgrade -y
sudo apt install -y lua5.1 liblua5.1-dev build-essential cmake gcc
cd $HOME
wget https://nim-lang.org/choosenim/init.sh -O choosenim
chmod +x choosenim
./choosenim -y
rm -rf choosenim
echo "export PATH=$HOME/.nimble/bin:$PATH" >> $HOME/.bashrc
wget https://luarocks.org/releases/luarocks-3.8.0.tar.gz
tar -xf luarocks-3.8.0.tar.gz
cd luarocks-3.8.0/
./configure
make
sudo make install
cd ..
sudo rm -rf luarocks-3.8.0.tar.gz luarocks-3.8.0/
vscode:
extensions:
- sumneko.lua
- nimsaem.nimvscode