Skip to content

Instantly share code, notes, and snippets.

@sturmenta
Last active July 26, 2024 01:17
Show Gist options
  • Save sturmenta/cd5332bf9d95fd5a4f23c16a98fc05e4 to your computer and use it in GitHub Desktop.
Save sturmenta/cd5332bf9d95fd5a4f23c16a98fc05e4 to your computer and use it in GitHub Desktop.
mac m1- start configuration
  • factory reset

  • update OS

  • from appstore

    • xcode
    • pixelmator pro
    • gestimer
    • istat menu
      • config like this:
      Screen Shot 2021-04-10 at 20 52 59
  • download and install brew /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"

  • settings

    • mouse - velocity 7/10
    • control center
      • show bluetooth in menu bar
      • always show sound in menu bar
      • do not show spotlight in menu bar
    • desktop & dock
      • dock
        • hide without animation defaults write com.apple.dock autohide-delay -float 0; defaults write com.apple.dock autohide-time-modifier -int 0;killall Dock
        • move to left
        • remove docker icons
        • auto hide
        • do not show recent apps
        • keep dock terminal
      • desktop - desktop & state manager
        • disable show items
        • click wallpaper to reveal desktop -> state manager (keep state manager disabled)
  • finder

    • show hide folders & files defaults write com.apple.finder AppleShowAllFiles -bool YES && killall Finder
    • sturmenta folder to root
    • remove "recents" and "airdrop" from sidebar
    • config
      • new finder windows show -> sturmenta
      • deactivate "open folders in tabs instead of new windows"
  • bg - copy picture to pictures and set as bg image

  • programs

    • arc browser & sync - set as default browser
      • dark reader extension
      • strong pass generator extension
    • logi options https://www.logitech.com/es-ar/software/logi-options-plus.html#customization-app-download
      • set mouse buttons to mission control
    • rectangle set:
      • launch on login
      • hide menu bar icon
    • zsh terminal sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"
      • configure brew
        • echo '' >> ~/.zshrc
        • echo '# homebrew config' >> ~/.zshrc
        • echo 'export PATH="/opt/homebrew/bin:$PATH"' >> ~/.zshrc
      • configure autosuggestions git clone https://github.com/zsh-users/zsh-autosuggestions ~/.oh-my-zsh/custom/plugins/zsh-autosuggestions
        • add this to .zshrc
        # auto suggestions config
        plugins=(zsh-autosuggestions)
        source ~/.oh-my-zsh/custom/plugins/zsh-autosuggestions/zsh-autosuggestions.zsh
        
      • configure powerlevel10k theme
        • copy this raw file and run nano ~/.p10k.zsh and paste and save
        • run git clone --depth=1 https://github.com/romkatv/powerlevel10k.git ~/.oh-my-zsh/custom/themes/powerlevel10k
        • add this to .zshrc
        # powerlevel10k theme config
        themes=(powerlevel10k)
        source ~/.oh-my-zsh/custom/themes/powerlevel10k/powerlevel10k.zsh-theme
        # To customize prompt, run `p10k configure` or edit ~/.p10k.zsh.
        [[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh
        
      • terminal opacity, dark, blur setting
      • restart the terminal
    • git brew install git
      • run git config --global user.name "sturmenta" & git config --global user.email "sturmenta@gmail.com"
      • run mkdir ~/code; cd code
      • run git clone https://github.com/sturmenta/current
    • TG Pro and activate with own license
    • Amazon Q for CLI
    • Zed rust editor
      • install the dark side extension
    • Spotify
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment