Add Everforest to vscode

This commit is contained in:
David Heinemeier Hansson
2024-06-03 20:56:14 -07:00
parent d9d8fbbf93
commit ba74f4c3fd
2 changed files with 4 additions and 1 deletions

View File

@ -2,7 +2,7 @@
set -e
# Pick a preconfigured theme
THEME=$(gum choose "Tokyo Night" "Everforest" "Rose Pine" "Gruvbox" "Catppuccin" --header "Choose your theme" --height 7 | tr '[:upper:]' '[:lower:]' | sed 's/ /-/g')
THEME=$(gum choose "Tokyo Night" "Catppuccin" "Everforest" "Gruvbox" "Rose Pine" --header "Choose your theme" --height 7 | tr '[:upper:]' '[:lower:]' | sed 's/ /-/g')
[ ! -n "$THEME" ] && exit 0
@ -19,6 +19,8 @@ elif [ "$THEME" == "catppuccin" ]; then
VSC_THEME="Catppuccin Macchiato"
elif [ "$THEME" == "tokyo-night" ]; then
VSC_THEME="Tokyo Night"
elif [ "$THEME" == "everforest" ]; then
VSC_THEME="Everforest Dark"
elif [ "$THEME" == "rose-pine" ]; then
VSC_THEME="Rosé Pine Dawn"
fi