dotfiles/.bashrc
2023-11-13 01:52:14 +03:00
Ask

21 lines
405 B
Bash

{0205fa81999c8657d8dde3daf2ca6937e5ab9e20 true 405 .bashrc 0xc004678c40}

# .bashrc
# If not running interactively, don't do anything
[[ $- != *i* ]] && return
PS1='[\u@\h \W]\$ '
export PATH=$PATH:$HOME/.local/bin
source $HOME/.bash_aliases
man() {
LESS_TERMCAP_md=$'\e[01;31m' \
LESS_TERMCAP_me=$'\e[0m' \
LESS_TERMCAP_se=$'\e[0m' \
LESS_TERMCAP_so=$'\e[01;44;37m' \
LESS_TERMCAP_ue=$'\e[0m' \
LESS_TERMCAP_us=$'\e[01;32m' \
command man "$@"
}