You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
523 B
21 lines
523 B
# |
|
# ~/.bashrc |
|
# |
|
|
|
# If not running interactively, don't do anything |
|
[[ $- != *i* ]] && return |
|
|
|
COLOR_CLEAN='\[\033[00m\]' |
|
COLOR_BLUE='\[\033[01;34m\]' |
|
COLOR_GREEN='\[\033[01;32m\]' |
|
|
|
#PS1='[\u@\h \W]\$ ' |
|
PS1="[${COLOR_GREEN}\u@\h${COLOR_CLEAN} ${COLOR_BLUE}\W${COLOR_CLEAN}]\$ " |
|
|
|
set -o noclobber |
|
export PATH="${PATH}:${HOME}/Documenti/Programmi/bin:${HOME}/.local/bin" |
|
export EDITOR="nano" |
|
|
|
source /usr/share/doc/pkgfile/command-not-found.bash |
|
source ~/.bash_aliases |
|
[ -e "${HOME}/.bashrc_local" ] && source ~/.bashrc_local
|
|
|