Files
dotfiles/link_config.sh
2019-12-23 22:53:38 +01:00

14 lines
239 B
Bash
Executable File

#! /bin/sh
#
# link_config.sh
# Copyright (C) 2016 fabian <fabian@testvm>
#
# Distributed under terms of the MIT license.
#
for filename in .config/*; do
ln -Ts $PWD/$filename $HOME/$filename
done
ln -Ts $PWD/nvim $HOME/.config/nvim