From 00f7ead067e266a00e40731dac33279d4296c836 Mon Sep 17 00:00:00 2001 From: Alexander David Frick Date: Fri, 22 Apr 2022 14:37:47 -0500 Subject: [PATCH] Export EDITOR and VISUAL to nano. --- setup.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/setup.sh b/setup.sh index 9156e188..af9f0040 100644 --- a/setup.sh +++ b/setup.sh @@ -36,6 +36,10 @@ printf "${YEL}Setting NINJA_SUMMARIZE_BUILD=1 and aliases to download the PGO Pr export NINJA_SUMMARIZE_BUILD=1 && +export EDITOR=nano && + +export VISUAL=nano && + alias gsync='gclient sync --with_branch_heads --with_tags -f -R -D' && alias pgo='python3 tools/update_pgo_profiles.py --target=linux update --gs-url-base=chromium-optimization-profiles/pgo_profiles' &&