mirror of
https://github.com/ivabus/dotfiles
synced 2024-11-10 02:05:16 +03:00
12 lines
318 B
Bash
12 lines
318 B
Bash
#!/bin/sh
|
|
|
|
echo "=> Linking zshrc"
|
|
if [ -f ~/.zshrc ]; then
|
|
echo "=> Moving old zshrc to ~/.zshrc.old"
|
|
mv ~/.zshrc ~/.zshrc.old
|
|
fi
|
|
ln -s ~/.env/dotfiles/env/.zshrc ~/.zshrc
|
|
echo "=> Linking neovim files"
|
|
rm -rf ${XDG_CONFIG_HOME:-$HOME/.config}/nvim
|
|
ln -s ~/.env/dotfiles/nvim ${XDG_CONFIG_HOME:-$HOME/.config}/nvim
|