mirror of
https://github.com/spirit-x64/dotfiles.git
synced 2025-01-19 01:51:47 +03:00
24 lines
450 B
Bash
24 lines
450 B
Bash
{88c557aece6c99a80d7ae9b820d5a35a941cc307 true 450 .bashrc 0xc002032fc0}
# .bashrc
|
|
|
|
# If not running interactively, don't do anything
|
|
[[ $- != *i* ]] && return
|
|
|
|
PS1='[\u@\h \W]\$ '
|
|
|
|
# Infinite history
|
|
HISTSIZE= HISTFILESIZE=
|
|
|
|
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 "$@"
|
|
}
|