Add first scripts

This commit is contained in:
Ivan R. 2023-11-01 16:09:59 +05:00
parent 87d3b0955b
commit 6ea97a1fea
Signed by: lumin
GPG key ID: 927D3132247BDE4E
3 changed files with 19 additions and 0 deletions

4
01-update.sh Executable file
View file

@ -0,0 +1,4 @@
#!/bin/sh
echo "Updating system..."
sudo pacman -Syu

7
02-git.sh Normal file
View file

@ -0,0 +1,7 @@
#!/bin/sh
sudo pacman -S git
git config --global user.email "ordinarydev@protonmail.com"
git config --global user.name "Ivan Reshetnikov"
git config --global commit.gpgsign true

8
03-editor.sh Executable file
View file

@ -0,0 +1,8 @@
#!/bin/sh
echo "Installing neovim..."
sudo pacman -S neovim
echo "Cloning neovim configuration..."
mv ~/.config/nvim{,-old}
git clone git@github.com:ordinary-dev/ordinary-neovim.git ~/.config/nvim