You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
491 B
Bash
22 lines
491 B
Bash
#
|
|
# ~/.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}]\$ "
|
|
PATH="${PATH}:${HOME}/Documenti/Programmi/bin"
|
|
|
|
set -o noclobber
|
|
export EDITOR="nano"
|
|
|
|
source /usr/share/doc/pkgfile/command-not-found.bash
|
|
source ~/.bash_aliases
|
|
[ -e "~/.bashrc_local" ] && source ~/.bashrc_local
|