From e464f19bffa844238e79f7fa28695fd0ba024b38 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Mon, 21 Jul 2025 20:34:09 -0400 Subject: [PATCH] Not starting right Emacs people can figure themselves out --- bin/omarchy-first-run-flow | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/bin/omarchy-first-run-flow b/bin/omarchy-first-run-flow index 8a58fde..611fc2e 100755 --- a/bin/omarchy-first-run-flow +++ b/bin/omarchy-first-run-flow @@ -3,7 +3,7 @@ source ~/.local/share/omarchy/ansi.sh if gum confirm "Install editor in addition to Neovim?"; then - options=("VSCode" "Cursor" "Zed" "Helix" "Emacs" "Nevermind") + options=("VSCode" "Cursor" "Zed" "Helix" "Nevermind") choice=$(printf "%s\n" "${options[@]}" | gum choose --header "Add programming editor") || exit 0 case "$choice" in @@ -11,7 +11,6 @@ if gum confirm "Install editor in addition to Neovim?"; then Cursor) yay -Sy --noconfirm --needed cursor-bin ;; Zed) yay -Sy --noconfirm --needed zed ;; Helix) yay -Sy --noconfirm --needed helix ;; - Emacs) yay -Sy --noconfirm --needed emacs ;; Nevermind) ;; esac fi