1
0
mirror of https://github.com/frebib/dotfiles.git synced 2024-06-14 12:57:23 +00:00

environment: add ~/.local/bin to $PATH

Python's pip amongst other things likes to put binaries in here.

Signed-off-by: Joe Groocock <me@frebib.net>
This commit is contained in:
Joe Groocock 2021-07-31 00:08:02 +00:00
parent dde4e776f5
commit 524e5132ba
Signed by: frebib
GPG Key ID: E0B16BEACFBB6A86

View File

@ -9,6 +9,6 @@ XDG_DATA_HOME="${XDG_DATA_HOME:-$HOME/.local/share}"
EDITOR="vim"
VISUAL="vim"
PATH="${PATH}:/sbin:/usr/sbin:${XDG_CONFIG_HOME}/scripts"
PATH="${PATH}:/sbin:/usr/sbin:${HOME}/.local/bin:${XDG_CONFIG_HOME}/scripts"
# vim: ft=sh