blob: 3244e83daafa9fe849aaaf40a1561da90d954542 (
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
39
40
41
42
43
44
45
46
47
48
49
50
|
#!/bin/bash
for name in \
.tmux.conf \
.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 \
emacs \
git \
nvim \
vim \
; \
do
if [ ! -L ~/.config/"$name" ]; then
echo "symlink: ~/.config/$name"
ln -s -f ~/dotfiles/.config/"$name" ~/.config/"$name"
fi
done
if [ ! -f ~/dotfiles/.config/vim/autoload/plug.vim ]; then
echo "download: ~/dotfiles/.config/vim/autoload/plug.vim"
curl -fLo ~/dotfiles/.config/vim/autoload/plug.vim --create-dirs https://raw.githubusercontent.com/junegunn/vim-plug/master/plug.vim
fi
if [ ! -d ~/.config/skk ]; then
echo "dir: ~/.config/skk"
mkdir ~/.config/skk
fi
if [ ! -f ~/.config/skk/jisyo.L ]; then
echo "download: ~/config/.skk/jisyo.L"
_compressed_jisyo="$(mktemp)"
curl -fL -o "$_compressed_jisyo" https://skk-dev.github.io/dict/SKK-JISYO.L.unannotated.gz
gunzip -cd "$_compressed_jisyo" > ~/.config/skk/jisyo.L
fi
|