From c471fcb9d0fc51b2f38c0a50e893d9b872761516 Mon Sep 17 00:00:00 2001 From: Evan Pratten Date: Tue, 28 May 2024 16:22:42 -0400 Subject: [PATCH] InputRC causes a big slowdown on MacOS --- install-linux.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/install-linux.sh b/install-linux.sh index 698795c..6f4f36d 100644 --- a/install-linux.sh +++ b/install-linux.sh @@ -45,7 +45,10 @@ mkdir -p ~/.local/share/nautilus/scripts/ # Configure the shell ln -sf $EWCONFIG_ROOT/configs/.zshrc ~/.zshrc ln -sf $EWCONFIG_ROOT/configs/.zshrc ~/.bashrc -ln -sf $EWCONFIG_ROOT/configs/.inputrc ~/.inputrc + +if ! uname | grep -q "Darwin"; then + ln -sf $EWCONFIG_ROOT/configs/.inputrc ~/.inputrc +fi # Configure Git ln -sf $EWCONFIG_ROOT/configs/.gitconfig ~/.gitconfig