Skip to content

Instantly share code, notes, and snippets.

@f3r
Last active May 4, 2021 18:03
Show Gist options
  • Save f3r/fdf1347e8c4cfc8b87b4c558ca121703 to your computer and use it in GitHub Desktop.
Save f3r/fdf1347e8c4cfc8b87b4c558ca121703 to your computer and use it in GitHub Desktop.
#!/bin/bash
# TERMINATOR
sudo add-apt-repository ppa:gnome-terminator
sudo apt-get update
sudo apt-get install -y terminator
# CURL & WGET
sudo apt-get -y install curl wget gdebi-core
# ZSH
sudo apt-get install -y zsh
sudo apt-get install -y git-core vim
wget https://github.com/robbyrussell/oh-my-zsh/raw/master/tools/install.sh -O - | zsh
chsh -s `which zsh`
# OH MY ZSH
sh -c "$(curl -fsSL https://raw.github.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
# //////////////////
# CLOSE SESSION & REOPEN
# //////////////////
#!/bin/bash
# ZSH THEME
# https://github.com/Powerlevel9k/powerlevel9k
sudo apt-get install -y fonts-powerline
git clone https://github.com/bhilburn/powerlevel9k.git ~/.oh-my-zsh/custom/themes/powerlevel9k
# You then need to select this theme in your ~/.zshrc:
# ----> ZSH_THEME="powerlevel9k/powerlevel9k"
# https://github.com/ohmyzsh/ohmyzsh/wiki/Plugins mirar cuales ponemos
# ----> plugins=(git )
sudo apt install xclip xsel
# NVM
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.38.0/install.sh | bash
# ADD THIS TO .zshrc
# export NVM_DIR="$([ -z "${XDG_CONFIG_HOME-}" ] && printf %s "${HOME}/.nvm" || printf %s "${XDG_CONFIG_HOME}/nvm")"
# [ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
# alias pbcopy='xclip -selection clipboard'
# alias pbpaste='xclip -selection clipboard -o'
#!/bin/bash
# NODE
nvm install node
nvm alias default node
# CHROME
wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
sudo gdebi -y google-chrome-stable_current_amd64.deb
google-chrome
# VSCODE
sudo snap install --classic code
# MONGODB
wget -qO - https://www.mongodb.org/static/pgp/server-4.4.asc | sudo apt-key add -
echo "deb [ arch=amd64,arm64 ] https://repo.mongodb.org/apt/ubuntu focal/mongodb-org/4.4 multiverse" | sudo tee /etc/apt/sources.list.d/mongodb-org-4.4.list
sudo apt-get update
sudo apt-get install -y mongodb-org
sudo systemctl start mongod
sudo systemctl enable mongod
# MONGO COMPASS
wget https://downloads.mongodb.com/compass/mongodb-compass_1.26.1_amd64.deb
sudo dpkg -i mongodb-compass_1.26.1_amd64.deb
# POSTMAN
sudo snap install postman
# RUNJS
sudo snap install runjs --edge
# VUE JS
npm install -g @vue/cli
npm install -g npm@7.11.2
# VSCODE EXTENSIONS
code --install-extension ms-vscode.atom-keybindings
code --install-extension formulahendry.auto-close-tag
code --install-extension formulahendry.auto-rename-tag
code --install-extension CoenraadS.bracket-pair-colorizer-2
code --install-extension alexdima.copy-relative-path
code --install-extension msjsdiag.debugger-for-chrome
code --install-extension mrmlnc.vscode-duplicate
code --install-extension ritwickdey.LiveServer
code --install-extension eg2.vscode-npm-script
code --install-extension christian-kohler.npm-intellisense
code --install-extension christian-kohler.path-intellisense
code --install-extension humao.rest-client
code --install-extension dakara.transformer
code --install-extension octref.vetur
code --install-extension VisualStudioExptTeam.vscodeintellicode
code --install-extension vscode-icons-team.vscode-icons
code --install-extension sdras.vue-vscode-snippets
code --install-extension wix.vscode-import-cost
# LINTER
npm install -g standard
code --install-extension chenxsan.vscode-standardjs
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment