27 lines
833 B
Bash
27 lines
833 B
Bash
# $FreeBSD: src/share/skel/dot.profile,v 1.19.2.2 2002/07/13 16:29:10 mp Exp $
|
|
#
|
|
# .profile - Bourne Shell startup script for login shells
|
|
#
|
|
# see also sh(1), environ(7).
|
|
#
|
|
|
|
# remove /usr/games and /usr/X11R6/bin if you want
|
|
PATH=$HOME/bin:/sbin:/bin:/usr/sbin:/usr/bin:/usr/games:/usr/local/sbin:/usr/local/bin:/usr/X11R6/bin; export PATH
|
|
|
|
# Setting TERM is normally done through /etc/ttys. Do only override
|
|
# if you're sure that you'll never log in via telnet or xterm or a
|
|
# serial line.
|
|
# Use cons25l1 for iso-* fonts
|
|
# TERM=cons25; export TERM
|
|
|
|
BLOCKSIZE=K; export BLOCKSIZE
|
|
EDITOR=vim; export EDITOR
|
|
PAGER=less; export PAGER
|
|
|
|
# set ENV to a file invoked each time sh is started for interactive use.
|
|
ENV=$HOME/.bashrc; export ENV
|
|
XMMS_PATH="tcp://10.42.0.2:6600"
|
|
|
|
#alias ls='ls -FG'
|
|
#alias la='ls -FGal'
|
|
source ~/.bashrc
|