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

environment: move PATH additions to 20-xdg-overrides

Signed-off-by: Joe Groocock <me@frebib.net>
This commit is contained in:
Joe Groocock 2021-01-05 09:43:02 +00:00
parent 3b78319653
commit ab7532e250
Signed by: frebib
GPG Key ID: E0B16BEACFBB6A86
2 changed files with 3 additions and 1 deletions

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:${GOPATH}/bin"
PATH="${PATH}:/sbin:/usr/sbin:${XDG_CONFIG_HOME}/scripts"
# vim: ft=sh

View File

@ -20,4 +20,6 @@ WEECHAT_HOME="$XDG_CONFIG_HOME/weechat"
XINITRC="$XDG_CONFIG_HOME/X11/xinitrc"
ZDOTDIR="$XDG_CONFIG_HOME/zsh"
PATH="${PATH}:${GOPATH}/bin"
# vim: ft=sh