Skip to main content
  1. Blog/

What I Use

Hardware

M1 Macbook Pro #

My first Apple machine, and I’m so happy I made the switch. The battery life on this machine easily doubles that of my previous Windows laptops along with being more powerful.

Logitech MX Master 3 #

The most comfortable mouse I’ve owned. Has a bunch of remappable buttons and connects reliably via Bluetooth so I don’t have to carry a dongle arround. Note: If on an M1 machine, make sure to grab the newest built of the Logi Options+ app here.

VS Code

I prefer VS Code for its extensibilty. Here’s a list of the extensions I consider essential.

Gruvbox Theme #

A collection of six excellent themes based on the original Vim gruvbox theme. I use Gruvbox Dark Medium.

VSCode Icons #

After going through many different file icon packs, I found VSCode Icons to have the greatest support for various file types and remaining recognizable at a glance..

Bootstrap Icons #

My preferred product icon pack.

Remote Development Pack #

Three different extensions for enabling remote development within VS Code. I regularly use the SSH extension for developing on remote machines and the GitHub extension for checking out GitHub repositories and making quick pull requests, all without having to clone a repository locally.

VSCode Spotify #

I have to listen to music or podcasts while I write code, and this extension allows me to see and manage what’s currently playing from VS Code directly. However, I find the Spotify interface better for switching playlists, so I hide the Spotify icon on the sidebar of VS Code by right-clicking on the sidebar and unchecking vscode-spotify.

GitHub Copilot #

As a student still experimenting and learning new languages, I find GitHub Copilot enourmously helpful when working with unfamiliar languages. It handles much of the boilerplate code and often uses a languages best practices. GitHub Copilot is free for students, and I’m not sure if I’d pay the $10/month for it if it wasn’t. I recommend the extension, Copilot Labs, for additional features such as code explaination and code translation between languages.

Project Manager #

Allows you to save a folder and workplace as a ‘Project’. This allows you to easily open up and switch between various projects without having to navigate via the file tree to that folder.

Excel Viewer #

I often use Excel files for logging and data collection, so it’s nice to be able to quickly open excel files within VS Code itself. However, I’ve found that the extension lacks support for many Excel functions, so sometimes you’ll still need to open up Excel.

Terminal

iTerm2 #

The terminal app I started with when I switched to Mac, and still continuously use and love. I’ve modified the settings rather heavily with the following key changes:

  • Gruvbox Theme for iTerm2.
  • Bound shift-tab to open a dedicated window with the default profile.

zsh Shell #

Essential for the other additions on this list. I haven’t tried Fish or any other alternative shells.

Powerlevel10k #

Amazing theme for zsh. I really like how it displays your current directory, git status, and prompt status.

Atuin #

Really awesome shell history replacement for the up-arrow key. It stores shell history in a SQLite database for quick querying history. I keep this database on my system, but there’s an option for hosting a remote server that can sync your encrypted shell history between two machines.

Atuin Example

Fig #

Adds IDE-style autocomplete for your terminal, whether that’s the default terminal, iTerm2, or the VS Code integrated terminal. I’ve found it immensely helpful in learning new CLI tools, but by far the most helpful feature is autocomplete for folders, file names, and recent SSH connections. Note: Currently MacOS only and closed-source.

CLI Tools

asdf #

Allows for easily switching between multiple runtime versions of a language or tool. I’ve used this for managing multiple versions of Python when I was simultaneously working on Python2 and Python3 projects.

exa #

Replacement for ls with useful additions like icons and tree view. I like displaying the icons without having to type ‘-icons’ each time, so I’ve added the following alias to .zshrc:

alias -g exa="exa --icons"

ripgrep #

Search tool to search directories for regex pattern. Useful for finding lines of code in a hugo repository. Built on the Rust Regex engine so searches are extremely fast.

trash-cli #

Useful tool for moving items to the trash rather than deleting them forever using rm.

neofetch #

Cool tool to quickly display system information. A modern alternative to screenfetch that works on more systems (particularly M1 versions of MacOS).

Neofetch Example

youtube-dl #

Amazing tool for downloading media from a variety of sources, not just YouTube. I frequently use to download content from YouTube, SoundCloud, and MixCloud.