sketchpad

A collection of personal and technical notes.

View the Project on GitHub arantebw/sketchpad

My Apple MacBook Air M4 Setup

kitty

Install the kitty terminal.

curl -L https://sw.kovidgoyal.net/kitty/installer.sh | sh /dev/stdin

References:

ssh

Copy the SSH Config content from the Laptop Configs folder from the Bitwarden account.

dotfiles

Clone and follow the instructions from this repository.

brew

Install the brew package manager.

/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"

References:

tmux

Install the tmux terminal multiplexer.

brew install tmux

Then follow the dotfiles command to create a symbolic link for the configuration.

Oh My Zsh

Install the oh-my-zsh tool to enhance zsh.

sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmyzsh/master/tools/install.sh)"

Then follow the dotfiles command to create a symbolic link for the configuration.

neovim

Install the neovim CLI-based text editor.

brew install neovim

Configure the LazyVim settings by cloning this repository https://github.com/arantebw/nvim to the ~/.config/ directory.

nvm

curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.4/install.sh | bash

References:

uv

Install the uv Python package manager.

brew install uv