Remove sudo from LIBCLANG

This commit is contained in:
Shaun Reed 2020-06-12 10:32:13 -04:00
parent 138ccc7e51
commit d76289d1fe
1 changed files with 1 additions and 1 deletions

View File

@ -18,5 +18,5 @@ alias alert='notify-send --urgency=low -i "$([ $? = 0 ] && echo terminal || echo
export EDITOR="vim"
export VISUAL="vim"
export LS_COLORS="di=1;34:ln=31;47:so=32:pi=33:ex=1;32:bd=34;46:cd=34;43:su=30;41:sg=30;46:tw=30;42:ow=30;43"
export LIBCLANG=$(sudo find / -name libclang.so.1)
export LIBCLANG=$(find / -name libclang.so.1 2>/dev/null)