diff --git a/private_dot_config/nvim/run_onchange_after_nvim_plugins_sync.fish.tmpl b/private_dot_config/nvim/run_onchange_after_nvim_plugins_sync.fish.tmpl index c62bf27..a9172ee 100644 --- a/private_dot_config/nvim/run_onchange_after_nvim_plugins_sync.fish.tmpl +++ b/private_dot_config/nvim/run_onchange_after_nvim_plugins_sync.fish.tmpl @@ -1,8 +1,12 @@ #!/usr/bin/env fish # fish_plugins hash {{ include "private_dot_config/nvim/init.lua" | sha256sum }} +Green='\033[0;32m' # Green +NC='\033[0m' # No Color -printf "Executing neovim :Lazy sync..." +echo +printf "$GreenExecuting neovim :Lazy sync..." nvim --headless "+Lazy! sync" +qa nvim --headless ":MasonUpdate" +qa -echo " done." +echo " done.$NC" +echo diff --git a/private_dot_config/private_fish/run_onchange_after_fish_plugins.fish.tmpl b/private_dot_config/private_fish/run_onchange_after_fish_plugins.fish.tmpl index be9c719..6cec89d 100644 --- a/private_dot_config/private_fish/run_onchange_after_fish_plugins.fish.tmpl +++ b/private_dot_config/private_fish/run_onchange_after_fish_plugins.fish.tmpl @@ -1,5 +1,17 @@ #!/usr/bin/env fish # fish_plugins hash {{ include "private_dot_config/private_fish/fish_plugins" | sha256sum }} +Green='\033[0;32m' # Green +NC='\033[0m' # No Color + +echo -e " + + +$Green############################################################################### +## ## +## Updating fisher plugins ## +## ## +###############################################################################$NC" +sleep 1 fisher update diff --git a/run_once_after_configure_fish.sh b/run_once_after_configure_fish.sh index 8c290f4..68711f7 100644 --- a/run_once_after_configure_fish.sh +++ b/run_once_after_configure_fish.sh @@ -1,6 +1,30 @@ #!/usr/bin/env fish +Green='\033[0;32m' # Green +NC='\033[0m' # No Color + +echo -e " + + +$Green############################################################################### +## ## +## Waiting for Neovim treesitter initiations ## +## ## +###############################################################################$NC" +sleep 3 timeout 10s nvim --headless ":TSUpdate" || true -fisher update +echo -e " + + +$Green############################################################################### +## ## +## Preparing to configure tide prompt... ## +## ## +###############################################################################$NC" +sleep 5 echo 2132335212421y | tide configure + + +cd ~ +fish