You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
config/install.sh

10 lines
171 B

mkdir -p ~/.config/
if [[ ! -d ~/.config/nvim/ ]] ; then
ln -s ~/config/nvim/ ~/.config/nvim
fi
if [[ ! -d ~/.config/i3 ]] ; then
ln -s ~/config/i3/ ~/.config/i3
fi
9 years ago