rc

Added a line to install Clojure and Leiningen automatically.

Author
Vngngdn
Date
Oct. 30, 2016, 2:16 p.m.
Hash
6e50dc42947cb5a735c49aecd950b449443c0bc5
Parent
1f7f0ae556838e6704844dc63c35b34d8451d65a
Modified file
install.sh

install.sh

1 addition and 0 deletions.

View changes Hide changes
1
1
# particulary Arch, because that's the best GNU/Linux distro =P
2
2
3
3
# The next command will install the software that I'm bound to use on my PC.
4
4
sudo pacman -S --noconfirm neovim base-devel rust vlc openssh
5
5
6
6
# Firefox:
7
7
sudo pacman -S --noconfirm firefox
8
8
# Uncomment next line for Dutch firefox translations.
9
9
sudo pacman -S --noconfirm firefox-i18n-nl
10
10
11
11
# Comment next line to stop the usual window manager from being installed.
12
12
sudo pacman -S --noconfirm sway
13
13
14
14
# To easily make use of the AUR, I'll first install Pacaur, which needs some
15
15
# special treatment up front:
16
16
cd ~/Downloads
17
17
wget https://aur.archlinux.org/cgit/aur.git/snapshot/pacaur.tar.gz
18
18
tar -x -f pacaur.tar.gz
19
19
cd pacaur
20
20
makepkg -sri --noconfirm
21
21
cd ..
22
22
rm -r pacaur
23
23
cd ~
24
24
25
25
# Making a directory in which to store all repositories. It's basically a
26
26
# repository for repositories =3
27
27
mkdir Repositories
28
28
29
29
# Making some common aliases for some pieces of software
30
30
alias vi nvim
31
31
alias vim nvim
32
32
33
33
# Some Python dependencies that need to be installed
34
34
pip install paramiko
35
35
36
36
# Collecting software from the AUR:
37
37
pacaur -S vim-youcompleteme-git
38
38
+
39