Install Node JS
- create directori download
mkdir download
cd download
- install wget
sudo dnf install wget
- Download NodeJS from https://nodejs.org/
Example :
wget https://nodejs.org/dist/v18.13.0/node-v20.09.0-linux-x64.tar.xz
- Install unzip and xz
sudo dnf install unzip
sudo dnf install xz
sudo apt install xz-utils
- Extrak file
tar -xf [nama file node js tadi di download]
- Rename the file
mv [file name] [destination name]
- copy folder to home directory
cp -r [folder name] /home/asep/
- register the env
sudo dnf install nano
cd ../
nano .bashrc
insert the path
export PATH=/home/asep/nodejs/bin:$PATH
ctrl + x
y
enter
Install git
sudo dnf install git
#Install Neovim
- download neovim
cd download
wget https://github.com/neovim/neovim/releases/download/v0.8.2/nvim-linux64.tar.gz
tar -xf nvim-linux64.tar.gz
mv nvim-linux64 nvim
cp -r nvim /home/asep/
- register path
cd ../
nano .bashrc
export PATH=/home/asep/nvim/bin:$PATH
Install GCC and G++
sudo dnf install gcc
sudo dnf install g++
Clone Neovim Configuration
git clone https://github.com/pojokcodeid/nvim-lazy-basic.git ~/.config/nvim