Rewrote dotenv
This commit is contained in:
7
scripts/install-arch.sh
Normal file
7
scripts/install-arch.sh
Normal 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
13
scripts/install-node.sh
Normal 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
|
Reference in New Issue
Block a user