Rewrote dotenv

This commit is contained in:
2021-10-14 12:15:46 -07:00
parent 8e332db84c
commit 5c68440efd
8 changed files with 34 additions and 170 deletions

7
scripts/install-arch.sh Normal file
View File

@ -0,0 +1,7 @@
#!/bin/bash
# Update
sudo pacman -Syuu
# Install
sudo pacman -S vim code unrar base-devel vlc firefox -q --noconfirm

13
scripts/install-node.sh Normal file
View File

@ -0,0 +1,13 @@
#!/bin/bash
# NVM
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.37.2/install.sh | bash
source NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion"
# Install NodeJS LTS
nvm install --lts
# Install global packages
npm i -g yarn