mirror of
https://github.com/arnaucube/configs.git
synced 2026-02-10 04:26:41 +01:00
first commit
This commit is contained in:
32
.bashrc
Normal file
32
.bashrc
Normal 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'
|
||||
Reference in New Issue
Block a user