Zsh Setup

Some basic zsh stuff. Setting up Aliasses https://linuxhint.com/configure-use-aliases-zsh/ CLI Tools https://dev.to/stuartcreed/how-to-add-aliases-to-your-terminal-on-mac-os-53dl Zsh Color https://scriptingosx.com/2019/07/moving-to-zsh-06-customizing-the-zsh-prompt/ Grepping History history | grep echo https://linuxhint.com/search-in-my-zsh-history/ Simple Cron (type) job export VISUAL=nano or export EDITOR=nano for noob-mode, and don’t forget to chmod +x your files. Example: 43 * * * * ~/scripts/notes.sh >/tmp/stdout.log 2>/tmp/stderr.log https://www.geekbitzone.com/posts/macos/crontab/macos-schedule-tasks-with-crontab/ https://towardsdatascience.com/a-step-by-step-guide-to-scheduling-tasks-for-your-data-science-project-d7df4531fc41 https://serverfault.com/questions/332255/how-to-backup-crontab-e-files https://apple.stackexchange.com/questions/38861/where-is-the-cron-log-file-in-macosx-lion Preferred Shebang Line? User preferred shell: #!/usr/bin/env bash Source: https://scriptingosx.com/2017/10/on-the-shebang/ zsh vs. bash differences Q: is zsh a superset of bash?...

March 1, 2023 · 105 words · Peter Dieleman

Homebrew installation defaults

Packages brew install tree brew install xplr brew install git brew install fzf brew install bat brew install lazygit brew install asdf brew install htop brew install lnav brew install ripgrep brew install helm brew install helmfile brew install tmux brew install zsh-syntax-highlighting brew install zsh-autosuggestions brew install docker-compose brew install --cask docker brew install --cask postman brew install --cask intellij-idea-ce brew install --cask visual-studio-code brew install --cask sublime-text brew install --cask rectangle brew install --cask iterm2 Post Installation For zsh-syntax-highlighting For zsh-autosuggestions Info macOS Java tools Command line tools for macOS Kubernetes tools

January 1, 2023 · 94 words · Peter Dieleman