aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--_mbsetupuser/Brewfile.org12
1 files changed, 12 insertions, 0 deletions
diff --git a/_mbsetupuser/Brewfile.org b/_mbsetupuser/Brewfile.org
index 9d63df5..139b90f 100644
--- a/_mbsetupuser/Brewfile.org
+++ b/_mbsetupuser/Brewfile.org
@@ -104,3 +104,15 @@ Flameshot, for easier screenshot taking. Aside from installing through Homebrew
#+begin_src ruby
cask "flameshot"
#+end_src
+
+Install the coreutils packages because the BSD alternatives that MacOS comes with are very disappointing.
+
+#+begin_src ruby
+ brew "coreutils"
+#+end_src
+
+This requires some aliases to actually work, otherwise the bundled versions get referenced instead.
+
+#+begin_src sh :tangle .config/zsh/conf.d/macos.sh
+ alias ls="gls --color=always"
+#+end_src