Skip to content

Commit

Permalink
feat: set up the bat theme
Browse files Browse the repository at this point in the history
  • Loading branch information
YasminTeles committed Jun 6, 2024
1 parent d0a1fd2 commit 8febcc3
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
set -e

# Print a step description
TOTAL_STEPS=9
TOTAL_STEPS=10
STEP=1
function step_msg {
printf "\033[36;1m[%s/%s] %s...\033[0m\n" "$STEP" "$TOTAL_STEPS" "$1";
Expand Down Expand Up @@ -95,6 +95,12 @@ step_msg "Setting up the zsh as default shell"
echo "$(brew --prefix)/bin/zsh" | sudo tee -a /etc/shells >/dev/null
sudo chsh -s "$(brew --prefix)/bin/zsh" "$USER"

# -- Set up the bat theme ------------------------------------------------------
step_msg "Setting up the bat theme"
mkdir -p "$(bat --config-dir)/themes"
cd "$(bat --config-dir)/themes" && curl -O https://raw.githubusercontent.com/folke/tokyonight.nvim/main/extras/sublime/tokyonight_moon.tmTheme >/dev/null
bat cache --build

# -- Git -----------------------------------------------------------------------
step_msg "Configuring Git"
git config --global user.email "$GIT_EMAIL"
Expand Down

0 comments on commit 8febcc3

Please sign in to comment.