File: bash_profile

package info (click to toggle)
libreswan 5.2-2.3
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 81,644 kB
  • sloc: ansic: 129,988; sh: 32,018; xml: 20,646; python: 10,303; makefile: 3,022; javascript: 1,506; sed: 574; yacc: 511; perl: 264; awk: 52
file content (28 lines) | stat: -rw-r--r-- 830 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# don't flood output with bracket characters
bind 'set enable-bracketed-paste off'

# single simple path
# - on BSD /bin and /usr/bin are different beasts
# - on NetBSD /usr/pkg/bin contains extra stuff
# - on OpenBSD/FreeBSD it is /usr/local/bin
PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/pkg/bin:/usr/pkg/sbin:/usr/local/bin:/usr/local/sbin:/testing/guestbin

# editor
export EDITOR=vim

# git stuff
export GIT_PS1_SHOWDIRTYSTATE=true
alias git-log-p='git log --pretty=format:"%h %ad%x09%an%x09%s" --date=short'

# stop systemd adding control characters
export LC_CTYPE=C
export SYSTEMD_COLOURS=false

# don't wander into the weeds looking for debug info
unset DEBUGINFOD_URLS

# include status in the prompt when non-zero
PS1='[\u@\h \W$(s=${?#0};echo "${s:+ $s}")]\$ '

# Force OBJDIR into /var/tmp
export OBJDIR=/var/tmp/OBJDIR