changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > infra / etc/skel/.bashrc

changeset 62: e1061716787e
parent: 0fc025be1ae0
author: ellis <ellis@rwest.io>
date: Wed, 03 Jan 2024 21:05:14 -0500
permissions: -rw-r--r--
description: closing in
1 # ~/.bashrc --- interactive Bash session config
2 
3 # If not running interactively, don't do anything
4 [[ $- != *i* ]] && return
5 
6 alias ls='ls --color=auto'
7 alias ec='emacsclient -c'
8 alias et='emacsclient -t'
9 
10 PS1="\u [\!]:\t:\w\n >> \[\e[0m\]"
11 
12 export LANG=en_US.UTF-8
13 
14 export LISP='sbcl'
15 export lr='rlwrap sbcl' # lisp repl
16 export ESHELL='/usr/bin/bash'
17 export ORGANIZATION='The Compiler Company'
18 export LANG=en_US.UTF-8
19 export ALTERNATE_EDITOR=''
20 export EDITOR='emacsclient -t'
21 export VISUAL='emacsclient -c'