1
0
Fork 0
This commit is contained in:
Florian RICHER 2022-01-04 20:51:05 +01:00
parent 93675f81a9
commit 392fac949c
4 changed files with 10 additions and 9 deletions

View file

@ -8,6 +8,11 @@ if [[ "$WITH_NEOVIM" == 'yes' ]]; then
echo '[INFO] Neovim already installed'
fi
if [[ "$WITH_LAZYGIT" == 'yes' && ! -d "$HOME/.config/lazygit" ]]; then
ln -s "$CWD/configs/lazygit" "$HOME/.config/lazygit"
echo "[INFO] Neovim config linked with symbolic link : $CWD/configs/lazygit -> $HOME/.config/lazygit"
fi
if [[ ! -d "$HOME/.config/nvim" ]]; then
ln -s "$CWD/configs/nvim" "$HOME/.config/nvim"
echo "[INFO] Neovim config linked with symbolic link : $CWD/configs/nvim -> $HOME/.config/nvim"