diff --git a/.bashrc b/.bashrc index 3493518..d7da239 100644 --- a/.bashrc +++ b/.bashrc @@ -166,19 +166,3 @@ export VISUAL=$EDITOR [[ -f ~/.resh/shellrc ]] && source ~/.resh/shellrc # this line was added by RESH (Rich Enchanced Shell History) [[ -f ~/.bash-preexec.sh ]] && source ~/.bash-preexec.sh # this line was added by RESH (Rich Enchanced Shell History) - -# set PATH so it includes user's private bin if it exists -if [ -d "$HOME/bin" ] ; then -export PATH="$HOME/bin:$PATH" -fi - -# set PATH so it includes user's private bin if it exists -if [ -d "$HOME/.local/bin" ] ; then -export PATH="$HOME/.local/bin:$PATH" -fi - -# set PATH so it includes cargo bin if it exists -if [ -d "$HOME/.cargo/bin" ] ; then -export PATH="$HOME/.cargo/bin:$PATH" -fi - diff --git a/.gitconfig b/.gitconfig index 3ffbe15..839b5df 100644 --- a/.gitconfig +++ b/.gitconfig @@ -1,7 +1,6 @@ [user] name = Štefan Bystriansky email = bystriansky.stefan12@gmail.com - signingkey = AD7552BD2FED9F02AD83C1735584F1ECF6232C7B [core] editor = vim autocrlf = input @@ -28,5 +27,3 @@ advertisePushOptions = true [gc] writeCommitGraph = true -[commit] - gpgsign = true diff --git a/.profile b/.profile index 3bb1dea..bb6f682 100644 --- a/.profile +++ b/.profile @@ -30,3 +30,8 @@ if [ -d "$HOME/.binenv" ] ; then PATH="${HOME}/.binenv:$PATH" source <(binenv completion bash) fi + +# set PATH so it includes cargo bin if it exists +if [ -d "$HOME/.cargo/bin" ] ; then + export PATH="$HOME/.cargo/bin:$PATH" +fi