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.
19 lines
423 B
19 lines
423 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
|
|
|
|
if [[ ! -d ~/.config/kitty ]] ; then
|
|
ln -s ~/config/kitty ~/.config/kitty
|
|
fi
|
|
|
|
if [[ ! -f ~/.config/.zshrc.local ]] ; then
|
|
ln -s ~/config/zsh/.zshrc ~/.zshrc
|
|
ln -s ~/config/zsh/.zshrc.local ~/.zshrc.local
|
|
ln -s ~/config/zsh/.zshrc.pre ~/.zshrc.pre
|
|
fi
|