31 lines
1.0 KiB
Bash
31 lines
1.0 KiB
Bash
#!/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
|
|
|
|
echo -e "
|
|
|
|
|
|
$Green###############################################################################
|
|
## ##
|
|
## Preparing to configure tide prompt... ##
|
|
## ##
|
|
###############################################################################$NC"
|
|
sleep 5
|
|
echo 2132335212421y | tide configure
|
|
|
|
|
|
cd ~
|
|
fish
|