added some corrections to bin/statusbar; the xterm font size is
[home.git] / .kshrc
blob3a73b6f3ec47dfda041ab4e132cd9d475db7821f
1 # $Id:dot.kshrc,v 1.4 2016/09/28 19:12:25 fstef Exp $
3 # call the system config file
4 . /etc/ksh.kshrc
8 # set the prompt
9 #export PS1="\e[0;34m\!\e[m [\e[0;33m\w\e[m] \e[0;36m\j\e[m\n\e[0;32m\$\e[m "
10 case "$TERM" in
11     *-256color)
12         PS1="[\e[0;37m\w\e[m] \e[0;31m\j\e[m\n\e[0;37m\$\e[m "
13         ;;
14     *)
15         PS1="[\w] \j\n\$ "
16         ;;
17 esac
18 export PS1
20 # set the pager
21 PAGER=less
22 MANPAGER=less
23 export PAGER MANPAGER
25 # set the command line editor to be like vi
26 VISUAL=vi
27 export VISUAL
29 # set the git editor
30 GIT_EDITOR=/usr/local/bin/nvi
31 export GIT_EDITOR
33 # set history file
34 HISTFILE=$HOME/.sh-hist
35 export HISTFILE
37 # define some useful aliases
38 alias ..='cd ..'
39 alias cd..='cd ..'
40 alias cd...='cd ../..'
41 alias cd....='cd ../../..'
42 alias cd.....='cd ../../../..'
43 alias cd/='cd /'
44 alias l='ls -A'
45 alias la='ls -nAh'
46 alias ll='ls -lh'
47 alias when='when --noampm'
49 # don't clobber existing files
50 set -o noclobber
52 MM_CHARSET=en_US.UTF-8
53 export MM_CHARSET