changelog shortlog graph tags branches changeset files file revisions raw help

Mercurial > infra / annotate 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
22
0a88cdd4bbd5 etc/skel init
ellis <ellis@rwest.io>
parents:
diff changeset
1
 # ~/.bashrc --- interactive Bash session config
0a88cdd4bbd5 etc/skel init
ellis <ellis@rwest.io>
parents:
diff changeset
2
 
0a88cdd4bbd5 etc/skel init
ellis <ellis@rwest.io>
parents:
diff changeset
3
 # If not running interactively, don't do anything
0a88cdd4bbd5 etc/skel init
ellis <ellis@rwest.io>
parents:
diff changeset
4
 [[ $- != *i* ]] && return
0a88cdd4bbd5 etc/skel init
ellis <ellis@rwest.io>
parents:
diff changeset
5
 
0a88cdd4bbd5 etc/skel init
ellis <ellis@rwest.io>
parents:
diff changeset
6
 alias ls='ls --color=auto'
0a88cdd4bbd5 etc/skel init
ellis <ellis@rwest.io>
parents:
diff changeset
7
 alias ec='emacsclient -c'
0a88cdd4bbd5 etc/skel init
ellis <ellis@rwest.io>
parents:
diff changeset
8
 alias et='emacsclient -t'
0a88cdd4bbd5 etc/skel init
ellis <ellis@rwest.io>
parents:
diff changeset
9
 
0a88cdd4bbd5 etc/skel init
ellis <ellis@rwest.io>
parents:
diff changeset
10
 PS1="\u [\!]:\t:\w\n  >> \[\e[0m\]"
0a88cdd4bbd5 etc/skel init
ellis <ellis@rwest.io>
parents:
diff changeset
11
 
0a88cdd4bbd5 etc/skel init
ellis <ellis@rwest.io>
parents:
diff changeset
12
 export LANG=en_US.UTF-8
0a88cdd4bbd5 etc/skel init
ellis <ellis@rwest.io>
parents:
diff changeset
13
 
0a88cdd4bbd5 etc/skel init
ellis <ellis@rwest.io>
parents:
diff changeset
14
 export LISP='sbcl'
29
0fc025be1ae0 sbcl rlwrap and makefile upgrades
ellis <ellis@rwest.io>
parents: 22
diff changeset
15
 export lr='rlwrap sbcl' # lisp repl
22
0a88cdd4bbd5 etc/skel init
ellis <ellis@rwest.io>
parents:
diff changeset
16
 export ESHELL='/usr/bin/bash'
0a88cdd4bbd5 etc/skel init
ellis <ellis@rwest.io>
parents:
diff changeset
17
 export ORGANIZATION='The Compiler Company'
0a88cdd4bbd5 etc/skel init
ellis <ellis@rwest.io>
parents:
diff changeset
18
 export LANG=en_US.UTF-8
0a88cdd4bbd5 etc/skel init
ellis <ellis@rwest.io>
parents:
diff changeset
19
 export ALTERNATE_EDITOR=''
0a88cdd4bbd5 etc/skel init
ellis <ellis@rwest.io>
parents:
diff changeset
20
 export EDITOR='emacsclient -t'
0a88cdd4bbd5 etc/skel init
ellis <ellis@rwest.io>
parents:
diff changeset
21
 export VISUAL='emacsclient -c'