mirror of
https://github.com/SqrtMinusOne/dotfiles.git
synced 2025-12-10 19:23:03 +03:00
13 lines
283 B
Bash
Executable file
13 lines
283 B
Bash
Executable file
#!/usr/bin/env bash
|
|
LINKS=(
|
|
"$HOME/.config/vnstat/.vnstatrc $HOME/.vnstatrc"
|
|
"$HOME/.config/vim/vimrc $HOME/.vimrc"
|
|
)
|
|
for item in "${LINKS[@]}"
|
|
do
|
|
ln -svf $item
|
|
done
|
|
|
|
emacs -Q --batch -l $HOME/.config/yadm/hooks/run-tangle.el
|
|
|
|
# ln -s ~/.config/tridactyl/themes ~/themes
|