From 401d8fd0c35c8ad8655ba4ecb017a11d1a337016 Mon Sep 17 00:00:00 2001 From: TiagoRG Date: Tue, 5 Mar 2024 19:34:51 +0000 Subject: [PATCH] Setup update Signed-off-by: TiagoRG --- .config/nvim/data/colorscheme.txt | 2 +- .stow-local-ignore | 4 ++++ setup.sh | 6 ++++-- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/.config/nvim/data/colorscheme.txt b/.config/nvim/data/colorscheme.txt index 3b15296..8c32236 100644 --- a/.config/nvim/data/colorscheme.txt +++ b/.config/nvim/data/colorscheme.txt @@ -1 +1 @@ -onedark \ No newline at end of file +vscode \ No newline at end of file diff --git a/.stow-local-ignore b/.stow-local-ignore index 472c49a..2aa2e5c 100644 --- a/.stow-local-ignore +++ b/.stow-local-ignore @@ -23,3 +23,7 @@ _darcs # ------------------------- setup.sh +.config/* +!.config/nvim +.local/* +!.local/bin diff --git a/setup.sh b/setup.sh index 7ffbb02..b24abc7 100644 --- a/setup.sh +++ b/setup.sh @@ -4,6 +4,9 @@ ORIGIN_DIR=$(pwd) cd "$HOME" || exit +# Install git +sudo pacman -S git --noconfirm + # Install yay git clone https://aur.archlinux.org/yay.git /tmp/yay cd /tmp/yay || exit @@ -12,9 +15,8 @@ sudo pacman -U yay-*.pkg.tar.zst --noconfirm cd "$OLDPWD" || exit # Install the required packages -# print in green echo -e "\e[32m$1\e[0mInstalling the required packages" -sudo yay -S stow vim neovim zsh git clang nodejs npm zoxide pfetch --noconfirm +yay -S stow vim neovim zsh clang nodejs npm zoxide pfetch --noconfirm # Clone the dotfiles if it's not the current directory if [ "$(pwd)" != "$HOME/.dotfiles" ]; then