aboutsummaryrefslogtreecommitdiff
path: root/install.sh
blob: 8fbfb737b7e0f808d294a22387605aa7e37cb6b7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#!/bin/bash

dir=~/Dotfiles;
files=`cat $dir/files`;

# Symlink profiles
for file in $files; do
    echo "Creating symlink for " + $file;
    ln -s $dir/$file ~/.$file;
done

# Generate folders
mkdir ~/Text;
mkdir ~/Programming;
mkdir ~/Projects;
mkdir ~/Projects/Templates;
mkdir ~/School;

touch ~/Text/notes.org;
touch ~/Text/todo.org;
touch ~/Text/calendar.org;

# get templates
declare -a templates=("CTemplate" "CPPTemplate" "PythonTemplate" "NodeTemplate" "ArduinoTemplate");
for template in ${templates[@]}; do
    git clone https://github.com/Oreodave/$template ~/Projects/Templates/$template;
done

# get doom emacs
git clone https://github.com/hlissner/doom-emacs ~/.emacs.d
~/.emacs.d/bin/doom install;
~/.emacs.d/bin/doom refresh;