aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Tom Willemse2026-07-16 12:34:09 -0700
committerGravatar Tom Willemse2026-08-26 23:04:25 -0700
commit0969f7437bcd474c4ef4bd1e9b7dd7370a3d08d7 (patch)
tree4af25b05070439c185854e19d0c55a8bd9ed8506
parent6b0ced7200b380cc05b8bed2c2da324dc6bb4442 (diff)
downloadnew-dotfiles-0969f7437bcd474c4ef4bd1e9b7dd7370a3d08d7.tar.gz
new-dotfiles-0969f7437bcd474c4ef4bd1e9b7dd7370a3d08d7.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