changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > infra / etc/skel/.bashrc

changeset 22: 0a88cdd4bbd5
child: 0fc025be1ae0
author: ellis <ellis@rwest.io>
date: Tue, 05 Dec 2023 22:00:49 -0500
permissions: -rw-r--r--
description: etc/skel init
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 ESHELL='/usr/bin/bash'
16 export ORGANIZATION='The Compiler Company'
17 export LANG=en_US.UTF-8
18 export ALTERNATE_EDITOR=''
19 export EDITOR='emacsclient -t'
20 export VISUAL='emacsclient -c'