-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.sh
58 lines (39 loc) · 1.04 KB
/
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
51
52
53
54
55
56
57
58
sudo apt update -y
sudo apt upgrade -y
# vim
sudo apt install vim -y
# chrome
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb -O google_chrome.deb
sudo dpkg -i google_chrome.deb
# git
sudo apt install git -y
# zsh
sudo apt install zsh -y
# ohmyzsh
sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
# pyenv
curl https://pyenv.run | bash
# adicionar pyenv no ~/.zshrc
# snap (precisa reiniciar após a instalação)
sudo rm /etc/apt/preferences.d/nosnap.pref
sudo apt update
sudo apt install snapd
# spotify
sudo snap install spotify
# pycharm
sudo snap install pycharm-community --classic
# postman
sudo snap install postman
# dbeaver
sudo snap install dbeaver-ce
# sublime
sudo snap install sublime-text --classic
# instalar package control https://packagecontrol.io/installation
# flameshot (a better screenshot software)
sudo snap install flameshot
# vscode
sudo snap install code --classic
# nvm
# https://github.com/nvm-sh/nvm#install--update-script
# yarn
npm install -g yarn