From 7db4ff12a366aad53a2ee282afc3975189dbeeef Mon Sep 17 00:00:00 2001 From: Josh Sherman Date: Tue, 25 Jun 2024 10:05:51 -0500 Subject: [PATCH] Alias top to htop --- zsh/.aliases | 3 +++ 1 file changed, 3 insertions(+) diff --git a/zsh/.aliases b/zsh/.aliases index 7c11184..0c4d489 100644 --- a/zsh/.aliases +++ b/zsh/.aliases @@ -46,6 +46,9 @@ alias GET='http' alias POST='http POST' alias HEAD='http HEAD' +# Use htop instead of boring old top +alias top='htop' + # Get the git branch name for the current directory (used in the prompt) git_current_branch() { (command git symbolic-ref -q HEAD || command git name-rev --name-only --no-undefined --always HEAD) 2> /dev/null