1
0
dotfiles/nvim/setup.sh
erick-alcachofa ea989b8071
chore: Initial commit
Current dotfiles settings (previously hosted on github)
2025-03-01 21:43:33 -06:00

21 lines
312 B
Bash
Executable File

#!/usr/bin/env bash
if [ -z "$DOTFILES" ]; then
export DOTFILES=$HOME/dotfiles
source $DOTFILES/env.sh
fi
yay -Syu
yay -S --needed neovim xclip
if [ -d "$CONFIG/nvim" ]; then
rm -fr $CONFIG/nvim
fi
if [ -d $CONFIG/nvim ]; then
rm $CONFIG/nvim
fi
ln -f -s $DOTFILES/nvim/config $CONFIG/nvim