dotfiles

configuration files for shell, text editor, graphical environment, etc.
git clone git://src.adamsgaard.dk/dotfiles
Log | Files | Refs | README | LICENSE Back to index

commit d81ea7a8b549592b103daa06df0e04366ad81319
parent 243e703ac23edc6f57411b19855c2a9461151608
Author: Anders Damsgaard <anders@adamsgaard.dk>
Date:   Tue,  1 Oct 2019 21:22:16 +0200

Add ksh configuration

Diffstat:
A.kshrc | 11+++++++++++
1 file changed, 11 insertions(+), 0 deletions(-)

diff --git a/.kshrc b/.kshrc @@ -0,0 +1,11 @@ +HISTFILE="$HOME/.ksh_history" +HISTSIZE=50000 + +export VISUAL="vi" +set -o vi + +PS1="\\033[32m\u@\h \\033[34m\w \\033[0m\$ " +export PS1 + +[ -f $HOME/.config/sh/profile ] && . $HOME/.config/sh/profile +[ -f $HOME/.config/sh/commands ] && . $HOME/.config/sh/commands