You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
977 B
23 lines
977 B
# |
|
# ~/.bashrc |
|
# |
|
|
|
# If not running interactively, don't do anything |
|
[[ $- != *i* ]] && return |
|
|
|
PS1='[\u@\h \W]\$ ' |
|
|
|
export EDITOR=vim |
|
export VISUAL=vim |
|
alias dotfile='/usr/bin/git --git-dir=/home/vmware/dotfiles/ --work-tree=/home/vmware' |
|
export TERM=alacritty |
|
alias cat="$(which bat) --wrap auto --color always --decorations auto --paging always --pager 'less -RF'" |
|
alias ls="$(which exa) -l -F --color=auto --color-scale --all --group-directories-first --binary --group --header --links --modified --git --extended" |
|
alias find="$(which fd) -H --no-ignore --ignore-case --regex --follow --color auto" |
|
alias ps="$(which procs)" |
|
alias htop="$(which btm) --basic --celsius --color default --current_usage --group" |
|
alias top="$(which btm) --basic --celsius --color default --current_usage --group" |
|
alias grep="$(which rg) --ignore-case --color auto --crlf --follow --hidden --multiline --no-config --no-ignore" |
|
alias sxiv="$(which sxiv) -p -r" |
|
|
|
export PATH="$HOME/.local/bin:$PATH" |