aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Tom Willemse2026-07-16 12:34:09 -0700
committerGravatar Tom Willemse2026-07-16 12:37:23 -0700
commit334bda8ca053cc49e6784ad8fd7ea1ddd902c291 (patch)
tree1d81fb971a910a070e94ed9d7be12c1cd30da5d9
parent30452d7ff90666d8e3fa774649a59317d8ea9122 (diff)
downloadnew-dotfiles-334bda8ca053cc49e6784ad8fd7ea1ddd902c291.tar.gz
new-dotfiles-334bda8ca053cc49e6784ad8fd7ea1ddd902c291.zip
macos: Add coreutils
So that I can use the ‘ls’ command that reads the ‘LS_COLORS’ variable so that I can use vivid to theme the colors.
-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