Environment Configuration
Less than 1 minute
Install Norminette
# The plugin only avaliable on vim
# If you machine has no vim editor, you'd better install it firstly
apt update
sudo apt install vim
sudo apt install python3-pip
# upgrade pip and setuptools
sudo python3 -m pip install --upgrade pip setuptools
# install norminette
sudo python3 -m pip install norminette
# update norminette
python3 -m pip install --upgrade norminette
Install Header
git clone https://github.com/42Paris/42header.git 42header
cd 42header
./set_header.sh
# confiture the email and name
vi ~/.zshrc
# USER=you name here
# export USER
# MAIL=you mail here
# export MAIL
#
configure ssh
If you want use machine A to connect machine B without input password
- create key files pair
# create key files pair
ssh-keygen -t rsa
- copy public key file(id_rsa.pub) to machine B
cat id_rsa.pub >> ~/.ssh/authorized_keys