From 9574cf352236ad7618ab28231f9d5faf229ba591 Mon Sep 17 00:00:00 2001 From: Simeon Simeonov Date: Mon, 28 Dec 2020 10:28:13 +0100 Subject: Add Fedora --- Fedora/root/.bashrc | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 Fedora/root/.bashrc (limited to 'Fedora/root/.bashrc') diff --git a/Fedora/root/.bashrc b/Fedora/root/.bashrc new file mode 100644 index 0000000..636a56b --- /dev/null +++ b/Fedora/root/.bashrc @@ -0,0 +1,34 @@ +# .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 ## + +export PS1="[\[\033[01;32m\]\u\[\033[00m\]@\h \w]\\$ " + +export HISTSIZE=10000 +export HISTCONTROL=ignorespace:erasedups +shopt -s checkwinsize + +export LANG=en_US.UTF-8 +export EDITOR=emacs -- cgit v1.3