From c25879338971210d90dabe7fd75990eb37771bbb Mon Sep 17 00:00:00 2001 From: simon Date: Mon, 16 May 2022 17:07:57 +0700 Subject: [PATCH] add .local/bin to path --- .zshrc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.zshrc b/.zshrc index e6e4609..58fe8db 100644 --- a/.zshrc +++ b/.zshrc @@ -9,7 +9,7 @@ fi HISTFILE=~/.histfile HISTSIZE=2000 SAVEHIST=2000 -export PATH=$HOME/bin:/usr/local/bin:/sbin:/usr/sbin:$PATH +export PATH=$HOME/bin:$HOME/.local/bin:/usr/local/bin:/sbin:/usr/sbin:$PATH export EDITOR="vim" export PAGER="less" export LESS_TERMCAP_mb=$'\e[1;32m'