rename directories to lowercase

This commit is contained in:
rf 2022-04-27 22:37:37 -05:00
parent 942e69aa68
commit e4163217b1
5 changed files with 0 additions and 0 deletions

22
openbsd/.kshrc Normal file
View file

@ -0,0 +1,22 @@
#
# Ralwey Fowler's .kshrc
# Last edited: April 25th, 2022
#
# I use NeoVim exclusively on OpenBSD.
alias vi=nvim
alias vim=nvim
alias ls=colorls
# I'm a noob, I know.
alias sudo=doas
# For some reason ruby on OpenBSD is ruby30 or gem30 or ruby27 etc, sort of nice for version control but annoying to type.
alias ruby=ruby30
alias gem=gem30
# PS1 is the prompt for your shell.
# This translates to '[USER@HOST /curr/dir]$ '
PS1='[${USER}@${HOST} ${PWD}]$ '
export vi vim ls sudo ruby gem PS1

4
openbsd/.profile Normal file
View file

@ -0,0 +1,4 @@
export PATH=$HOME/bin:/bin:/sbin:/usr/bin:/usr/sbin:/usr/X11R6/bin:/usr/local/bin:/usr/local/sbin:/usr/games
export ENV=$HOME/.kshrc
export HOME
export TERM