From f180dade4afd2661b5f573622820e2b42eb8c0ce Mon Sep 17 00:00:00 2001 From: Luke Smith Date: Mon, 20 Apr 2020 16:45:44 -0400 Subject: [PATCH] note on removing ~/.profile --- .zprofile | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.zprofile b/.zprofile index 48c5e2a..3ef64d2 100644 --- a/.zprofile +++ b/.zprofile @@ -1,4 +1,9 @@ -# Profile file. Runs on login. Environmental variables are set here. +#!/bin/zsh + +# zsh profile file. Runs on login. Environmental variables are set here. + +# If you don't plan on reverting to bash, you can remove the link in ~/.profile +# to clean up. # Adds `~/.local/bin` to $PATH export PATH="$PATH:$(du "$HOME/.local/bin/" | cut -f2 | tr '\n' ':' | sed 's/:*$//')"