blob: c98add7fedad3b897335b51efcc12fa5cfce15c1 (
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
33
34
35
36
37
38
|
#!/bin/bash
if [ ! -f ~/dotfiles/.vim/autoload/plug.vim ]; then
echo "download: ~/dotfiles/.vim/autoload/plug.vim"
curl -fLo ~/dotfiles/.vim/autoload/plug.vim --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
fi
for name in \
.emacs.d \
.gitconfig \
.tmux.conf \
.vim \
.vimrc \
.zshrc \
; \
do
if [ ! -L ~/"$name" ]; then
echo "symlink: ~/$name"
ln -s -f ~/dotfiles/"$name" ~/"$name"
fi
done
if [ ! -d ~/.config ]; then
echo "dir: ~/.config"
mkdir ~/.config
fi
for name in \
alacritty \
bat \
git \
; \
do
if [ ! -L ~/.config/"$name" ]; then
echo "symlink: ~/.config/$name"
ln -s -f ~/dotfiles/.config/"$name" ~/.config/"$name"
fi
done
|