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.
|
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
|
|
|
|
if [[ ! -d ~/.config/kitty ]] ; then
|
|
ln -s ~/config/kitty ~/.config/kitty
|
|
fi
|
|
|