Initial commit
This commit is contained in:
commit
209ba130c0
4852 changed files with 1517959 additions and 0 deletions
42
.bashrc
Normal file
42
.bashrc
Normal file
|
|
@ -0,0 +1,42 @@
|
|||
# _ _
|
||||
# | |__ __ _ ___| |__ _ __ ___
|
||||
# | '_ \ / _` / __| '_ \| '__/ __|
|
||||
# _| |_) | (_| \__ \ | | | | | (__
|
||||
# (_)_.__/ \__,_|___/_| |_|_| \___|
|
||||
#
|
||||
# -----------------------------------------------------
|
||||
# ML4W bashrc loader
|
||||
# -----------------------------------------------------
|
||||
|
||||
# DON'T CHANGE THIS FILE
|
||||
|
||||
# You can define your custom configuration by adding
|
||||
# files in ~/.config/bashrc
|
||||
# or by creating a folder ~/.config/bashrc/custom
|
||||
# with copies of files from ~/.config/bashrc
|
||||
# You can also create a .bashrc_custom file in your home directory
|
||||
# -----------------------------------------------------
|
||||
|
||||
# -----------------------------------------------------
|
||||
# Load modular configarion
|
||||
# -----------------------------------------------------
|
||||
|
||||
for f in ~/.config/bashrc/*; do
|
||||
if [ ! -d $f ] ;then
|
||||
c=`echo $f | sed -e "s=.config/bashrc=.config/bashrc/custom="`
|
||||
[[ -f $c ]] && source $c || source $f
|
||||
fi
|
||||
done
|
||||
|
||||
# -----------------------------------------------------
|
||||
# Load single customization file (if exists)
|
||||
# -----------------------------------------------------
|
||||
|
||||
if [ -f ~/.bashrc_custom ] ;then
|
||||
source ~/.bashrc_custom
|
||||
fi
|
||||
. "/home/patrick/.deno/env"
|
||||
source /home/patrick/.local/share/bash-completion/completions/deno.bash
|
||||
|
||||
alias xi="sudo xbps-install -S"
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue