4 4. Install Guide On Linux Fedora
Asep Komarudin edited this page 2023-12-29 15:33:36 +07:00

Install Node JS

  1. create directori download
mkdir download
cd download
  1. install wget
sudo dnf install wget
  1. Download NodeJS from https://nodejs.org/ Example :
wget https://nodejs.org/dist/v18.13.0/node-v20.09.0-linux-x64.tar.xz
  1. Install unzip and xz
sudo dnf install unzip
sudo dnf install xz
sudo apt install xz-utils
  1. Extrak file
tar -xf [nama file node js tadi di download]
  1. Rename the file
mv [file name] [destination name]
  1. copy folder to home directory
cp -r [folder name] /home/asep/
  1. 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

  1. 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/
  1. 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