-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.sh
50 lines (38 loc) · 934 Bytes
/
setup.sh
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#!/usr/bin/env bash
set -eu
dir="$(cd "$(dirname "${BASH_SOURCE[0]}")" >/dev/null 2>&1 && pwd)"
cd "$dir"
sudo dnf install -y \
fedora-workstation-repositories
sudo dnf config-manager --set-enabled google-chrome
sudo dnf install -y \
stow \
libtool \
make \
gcc \
cmake \
ripgrep \
google-chrome-stable \
emacs \
tmux \
fzf \
docker-compose \
ShellCheck \
nodejs \
golang
sudo npm install --global yarn
curl -fsSL https://get.docker.com | sudo sh -
sudo groupadd docker
sudo usermod -aG docker $USER
stow bash
stow emacs
stow tmux
stow git
source ~/.bashrc
curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python3 -
source ~/.poetry/env
poetry config virtualenvs.in-project true
mkdir -p ~/devel/go
go get golang.org/x/tools/cmd/goimports
go get golang.org/x/tools/cmd/godoc
go get github.com/rogpeppe/godef