Last active
February 17, 2021 19:10
-
-
Save marcus7777/df3b15bf10454b5327bb0f10138df696 to your computer and use it in GitHub Desktop.
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
sudo apt update && sudo apt install xz-utils firefox-esr -y | |
curl -sL https://deb.nodesource.com/setup_10.x | sudo bash - | |
curl -sL https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add - | |
echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list | |
sudo apt-get install -y nodejs | |
sudo apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 23E7166788B63E1E | |
sudo apt update -y && sudo apt install yarn -y | |
yarn global add firebase-tools | |
yarn global add @vue/cli | |
echo "# yarn" >> ~/.profile | |
echo 'export PATH="$PATH:$(yarn global bin)"' >> ~/.profile | |
export PATH="$PATH:$(yarn global bin)" | |
vue --version | |
firebase login | |
#tools | |
sudo apt install screen vim -y | |
mkdir -p ~/.vim/pack/plugins/start | |
git clone --depth=1 [email protected]:ervandew/supertab.git ~/.vim/pack/plugins/start/supertab | |
mkdir -p ~/.vim/pack/tpope/start | |
cd ~/.vim/pack/tpope/start | |
git clone https://tpope.io/vim/fugitive.git | |
vim -u NONE -c "helptags fugitive/doc" -c q | |
git clone https://tpope.io/vim/surround.git | |
vim -u NONE -c "helptags surround/doc" -c q |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment