Skip to content

Instantly share code, notes, and snippets.

@azzlack
azzlack / atom.cmd
Created March 10, 2017 14:37
Start Cmder from
@echo off
SET CMDER_ROOT=C:\Tools\cmder
"%CMDER_ROOT%\vendor\init.bat"
@azzlack
azzlack / install_podman_m1_mac.md
Created January 18, 2024 12:49
Install Podman on M1 Mac

Steps

  1. Download and install podman from https://github.com/containers/podman/releases. Remember to use the arm verison.

  2. Configure OSX machine provider config to use apple's hypervisor

    mkdir -p ~/.config/containers
    tee ~/.config/containers/containers.conf 1> /dev/null <<EOF
    [containers]
    
    [engine]
@azzlack
azzlack / terminal_setup.sh
Last active January 19, 2025 22:45
My MacOS Terminal Setup
brew install --cask ghostty
brew install powerlevel10k
brew install zsh-autosuggestions
brew install zsh-syntax-highlighting
brew install zoxide
brew install vivid
echo "autoload -Uz compinit" >> ~/.zshrc
echo "compinit" >> ~/.zshrc
echo "source $(brew --prefix)/share/powerlevel10k/powerlevel10k.zsh-theme" >> ~/.zshrc