Загрузить файлы в «/»

This commit is contained in:
Tina Pavlenko 2025-11-17 16:57:15 +00:00
commit 395d35450d
5 changed files with 517 additions and 0 deletions

21
.bashrc Normal file
View file

@ -0,0 +1,21 @@
# If not running interactively, don't do anything
[[ $- != *i* ]] && return
PS1='\[\e[92m\]\u\[\e[0m\]@\[\e[92m\]\h\[\e[0m\]:\[\e[96m\]\w\[\e[0m\] \[\e[91m\]$?\n\[\e[0m\]\$ '
# def flags
alias ls='ls --color=auto'
alias grep='grep --color=auto'
# aliases
alias en='LANG=en_US.UTF-8'
alias ru='LANG=ru_RU.UTF-8'
alias mpvgui='mpv --player-operation-mode=pseudo-gui'
alias pacaur='yay'
# vars
export EDITOR='vim'
export VISUAL='vim'
# greeting
[ -f ~/.bash_greeting ] && echo -e "\n$(shuf -n 1 $HOME/.bash_greeting)\n"