-
Notifications
You must be signed in to change notification settings - Fork 1
/
makefile
48 lines (37 loc) · 1.08 KB
/
makefile
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
install: install-bash install-vim install-nvim install-tmux \
install-colors install-terminal install-awesome \
install-asound install-ncmpcpp install-git
install-bash:
rm -f ~/.bashrc ~/.bash_aliases ~/.bash_prompt
ln -s `pwd`/.bashrc ~/.bashrc
ln -s `pwd`/.git-completion.bash ~/.git-completion.bash
ln -s `pwd`/.bash_prompt ~/.bash_prompt
ln -s `pwd`/.bash_aliases ~/.bash_aliases
install-vim:
rm -rf ~/.vimrc
ln -s `pwd`/.vimrc ~/.vimrc
ln -s ~/.vim/vimrc ~/.vimrc
install-nvim:
rm -rf ~/.config/nvim
ln -s `pwd`/nvim ~/.config/nvim
install-tmux:
rm -f ~/.tmux.conf
ln -s `pwd`/.tmux.conf ~/.tmux.conf
install-colors:
rm -f ~/.dircolors
ln -s `pwd`/.dircolors ~/.dircolors
install-terminal:
rm -f ~/.Xdefaults
ln -s `pwd`/.Xdefaults ~/.Xdefaults
install-awesome:
rm -rf ~/.config/awesome
ln -s `pwd`/awesome ~/.config/awesome
install-asound:
ln -s `pwd`/.asroundrcTV ~/.asoundrcTV
ln -s `pwd`/.asroundrcHEAD ~/.asoundrcHEAD
install-ncmpcpp:
rm -rf ~/.ncmpcpp
ln -s `pwd`/.ncmpcpp ~/.ncmpcpp
install-git:
rm -rf ~/.gitconfig
ln -s `pwd`/.gitconfig ~/.gitconfig