Last active
August 18, 2020 11:54
-
-
Save mishazawa/4bc476143e3a0cf0961d4c1e7d228482 to your computer and use it in GitHub Desktop.
fast setup
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| echo "deb https://download.sublimetext.com/ apt/stable/" | sudo tee /etc/apt/sources.list.d/sublime-text.list | |
| echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list | |
| curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add - | |
| sudo add-apt-repository ppa:gezakovacs/ppa | |
| sudo apt-get update | |
| sudo apt-get install curl git vim sublime-text unetbootin default-jdk yarn ffmpeg fzf | |
| curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.35.3/install.sh | bash | |
| reload | |
| nvm install node | |
| curl -L https://telegram.org/dl/desktop/linux > tdeskop.tar.xz | |
| tar -xvf tdeskop.tar.xz | |
| rm tdeskop.tar.xz | |
| ssh-keygen -o -t rsa -b 4096 -C "$EMAIL" | |
| curl -sL https://firebase.tools | bash | |
| echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf && sudo sysctl -p | |
| git config --global core.editor "vim" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment