-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcopy.sh
More file actions
13 lines (12 loc) · 762 Bytes
/
copy.sh
File metadata and controls
13 lines (12 loc) · 762 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
echo -e "\e[1;33m${bold}Installing packages...\e[0m";
if [ $OSTYPE == "linux-androideabi" ];
then
apt install vim -y
echo -e "\e[1;33m${bold}Copying files...\e[0m"
cp .vimrc ~/ -rf
else
sudo apt install vim -y
echo -e "\e[1;33m${bold}Copying files...\e[0m"
cp linux.vimrc ~/.vimrc
fi
echo -e "\e[1;32m${bold}NVix is installed... Enjoy :)\e[0m";