summaryrefslogtreecommitdiff
path: root/Fedora/root/.bashrc
blob: d76ae4428b23066331882228de07a4b4c6b6227c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# .bashrc

# Source global definitions
if [ -f /etc/bashrc ]; then
	. /etc/bashrc
fi

# User specific environment
if ! [[ "$PATH" =~ "$HOME/.local/bin:$HOME/bin:" ]]
then
    PATH="$HOME/.local/bin:$HOME/bin:$PATH"
fi
export PATH

# Uncomment the following line if you don't like systemctl's auto-paging feature:
# export SYSTEMD_PAGER=

# User specific aliases and functions
 
alias rm='rm -i'
alias cp='cp -i'
alias mv='mv -i'

# Custom #
##source /usr/share/git-core/contrib/completion/git-prompt.sh
export PS1='[\[\033[01;32m\]\u\[\033[00m\]@\h \w]\\$ '

alias emacs='emacs -nw'

HISTSIZE=10000
HISTFILESIZE=20000
HISTCONTROL=ignorespace:erasedups

export LANG=en_US.UTF-8
export EDITOR=emacs