aboutsummaryrefslogtreecommitdiff
path: root/install.sh
diff options
context:
space:
mode:
authorMitchell Riedstra <mitch@riedstra.dev>2025-09-04 17:09:58 -0400
committerMitchell Riedstra <mitch@riedstra.dev>2025-09-04 17:16:01 -0400
commit21cbbd2d61b4020817c31cc61ea665301866e0c8 (patch)
tree211b697b6c96480a8d3241290a32f87861d6ef6f /install.sh
parent35ba8e06625e1bcd01d871b036470453eebfa9ff (diff)
downloaddotfiles-21cbbd2d61b4020817c31cc61ea665301866e0c8.tar.gz
dotfiles-21cbbd2d61b4020817c31cc61ea665301866e0c8.tar.xz
Update arch install and setup scripts. Add paq clone to the install script
Diffstat (limited to 'install.sh')
-rwxr-xr-xinstall.sh6
1 files changed, 6 insertions, 0 deletions
diff --git a/install.sh b/install.sh
index 4ef204d..650ad34 100755
--- a/install.sh
+++ b/install.sh
@@ -39,6 +39,12 @@ if ! [ -d "$_nvimdir" ] ; then
fi
setLink -s "$(pwd)/dotfiles/nvim/init.lua" -d "$_nvimdir/init.lua"
+_paq_dir="${XDG_DATA_HOME:-$HOME/.local/share}"/nvim/site/pack/paqs/start/paq-nvim
+if ! [ -d "$_paq_dir" ] ; then
+ git clone --depth=1 https://github.com/savq/paq-nvim.git "$_paq_dir"
+ printf "\033[1;31m%s\033[0m\n" "You will need to run ':PacSync' in neovim"
+fi
+
_ghosttydir="$HOME/.config/ghostty"
if ! [ -d "$_ghosttydir" ] ; then
mkdir "$_ghosttydir"