config/~/Bash/.bashrc

40 lines
1.1 KiB
Bash
Raw Normal View History

2021-07-21 01:07:46 +03:00
# If not running interactively, don't do anything
[[ $- != *i* ]] && return
2022-07-09 23:08:21 +03:00
export PS1='\[\e[0;33m\][\t] \[\e[0;32m\][\W]\[\e[0m\] \[\e[0;31m\]> \[\e[0m\]'
2022-03-15 01:46:48 +03:00
export GPG_TTY=$(tty)
2022-08-07 21:51:28 +03:00
export PATH="$PATH:$HOME/.bin:$HOME/.local/bin"
2022-08-21 17:54:14 +03:00
# PMNG
2022-08-07 21:53:20 +03:00
export PMNG_PWD_FILE="$HOME/Vault/.password.yml"
export PMNG_TIMEOUT=10
2021-07-21 01:07:46 +03:00
2021-08-09 23:11:20 +03:00
# ALIASES
2021-07-21 01:07:46 +03:00
alias ls='ls --color=auto'
alias df='df -h'
alias du='du -h'
2022-03-15 01:21:55 +03:00
alias ..='cd ..'
2021-07-21 01:07:46 +03:00
2022-08-21 17:54:14 +03:00
alias cfs='cryfs $HOME/.cryfs/ $HOME/Vault' # CryFS mount
2022-08-21 17:49:07 +03:00
alias tardir='tar -cJf "../${PWD##*/}.tar.xz"' # tar.xz current dir
2021-08-08 10:02:23 +03:00
alias pacman-orphaned='pacman -Rns $(pacman -Qtdq)' # delete orphaned packages (Arch Linux)
2022-08-13 11:52:58 +03:00
# Crystal build
if command -v shards &> /dev/null; then
alias cbuild='shards build'
fi
2022-06-25 20:30:27 +03:00
# NVM (Node.js version manager)
if [ -d "$HOME/.nvm" ]; then
export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion"
2022-07-08 14:55:13 +03:00
export PATH="$PATH:node_modules/.bin"
2022-06-25 20:30:27 +03:00
fi
2022-08-11 00:30:35 +03:00
# Porteus Sulime Text
if [ -d "/opt/sublime_text-4126/" ]; then
alias subl='/opt/sublime_text-4126/sublime_text'
fi