From 2efb585fec813a58776415979a50b66c6beffc16 Mon Sep 17 00:00:00 2001 From: Jordan Orelli Date: Thu, 21 Jul 2022 15:22:21 -0500 Subject: [PATCH] msys environment settings section --- .bashrc | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.bashrc b/.bashrc index 94b7950..5699632 100644 --- a/.bashrc +++ b/.bashrc @@ -46,6 +46,11 @@ Darwin) Linux) # for some reason I find this welcome string more annoying on Linux ;; +MSYS_NT-10.0-22000) + # I don't actually have any MSYS-specific settings yet but probably will at + # some point + echo "Using MSYS bash settings." + ;; *) echo "No platform-specific bash settings are enabled." ;; @@ -55,6 +60,7 @@ alias tree="tree -C" alias ls="ls --color=auto" if [ -f "$HOME/.localrc" ]; then + echo "Using machine-specific settings from "$HOME/.localrc"" source "$HOME/.localrc" fi