changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > infra / etc/skel/.bashrc

changeset 29: 0fc025be1ae0
parent: 0a88cdd4bbd5
author: ellis <ellis@rwest.io>
date: Fri, 29 Dec 2023 21:10:24 -0500
permissions: -rw-r--r--
description: sbcl rlwrap and makefile upgrades
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'