macOS Developer Tips

These are handy tools and tweaks that aren’t required for a clean install, but can improve workflow or handle specific tasks.

๐Ÿ”ง Git Utilities

๐Ÿ›  Other Custom Tweaks

  • Remove .DS_Store files:

    
    defaults write com.apple.desktopservices DSDontWriteNetworkStores -bool TRUE
    sudo find / -name .DS_Store -exec rm {} +
    
  • Make Dock appear instantly:

    defaults write com.apple.Dock autohide-delay -float 0.0001; killall Dock
    # To reset:
    defaults delete com.apple.Dock autohide-delay; killall Dock
    

๐Ÿ Python Environment (Anaconda)

  • Create and use an environment:

    conda create --name MKDOCS python=3.9
    conda activate MKDOCS
    pip install mkdocs mkdocs-material
    
  • Remove environment:

    conda remove --name MKDOCS --all
    conda deactivate