changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > infra > home / .bashrc

changeset 68: 0f0a7be27320
parent: 93ce4e055ae8
author: Richard Westhaver <ellis@rwest.io>
date: Sun, 21 Jul 2024 21:26:38 -0400
permissions: -rw-r--r--
description: homerupdate
1 # .bashrc --- bash configuration
2 # Set prompt
3 PS1="\u [\!]:\t:\w\n >> \[\e[0m\]"
4 # default Envs
5 export LISP='sbcl'
6 export ESHELL='/usr/bin/bash'
7 export ORGANIZATION='The Compiler Company'
8 export MANPATH="/usr/local/man:$MANPATH"
9 export LANG=en_US.UTF-8
10 export ALTERNATE_EDITOR=''
11 export EDITOR='emacsclient -a='
12 # aliases
13 alias em='emacsclient -a='
14 alias ec='emacsclient -c -a='
15 alias et='emacsclient -t -a='
16 # VCS
17 alias hgsub='find . -name ".hg" -type d | grep -v "\./\.hg" | xargs -n1 dirname | xargs -iREPO hg -R REPO'
18 # completion
19 complete -c man which