You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

23 lines
497 B
Bash

#
# 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