Add first scripts
This commit is contained in:
parent
87d3b0955b
commit
6ea97a1fea
3 changed files with 19 additions and 0 deletions
4
01-update.sh
Executable file
4
01-update.sh
Executable file
|
@ -0,0 +1,4 @@
|
|||
#!/bin/sh
|
||||
|
||||
echo "Updating system..."
|
||||
sudo pacman -Syu
|
7
02-git.sh
Normal file
7
02-git.sh
Normal 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
8
03-editor.sh
Executable 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
|
Loading…
Reference in a new issue