first commit

This commit is contained in:
arnaucube
2018-10-27 21:15:57 +02:00
commit d077e0ac5e
4 changed files with 211 additions and 0 deletions

32
.bashrc Normal file
View File

@@ -0,0 +1,32 @@
#
# [...]
#
# after the default config
# Show git branch name
force_color_prompt=yes
color_prompt=yes
parse_git_branch() {
git branch 2> /dev/null | sed -e '/^[^*]/d' -e 's/* \(.*\)/(\1)/'
}
if [ "$color_prompt" = yes ]; then
PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[01;95m\]$(parse_git_branch)\[\033[00m\]\$ '
else
PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w$(parse_git_branch)\$ '
fi
unset color_prompt force_color_prompt
# nvim alias
alias n='nvim'
# go
export PATH=$PATH:/usr/local/go/bin
export GOPATH=$HOME/go
export GO111MODULE=on
# rust
export PATH="$HOME/.cargo/bin:$PATH"
# python
alias python='/usr/bin/python3.6'
alias pip='/usr/bin/pip3'