test v2.5
Štefan Bystriansky 3 years ago
parent 30452e0208
commit f85b60d039
  1. 16
      .bashrc
  2. 3
      .gitconfig
  3. 5
      .profile

@ -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

@ -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

@ -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

Loading…
Cancel
Save