#!/bin/sh
#
# Profile file for Vintage Terminal

# do not edit this file, as it'll be overwritten

# run bash file
if [ "$SHELL" == "/bin/bash" ]; then
  . ~/.bashrc
fi

# nethack - disable colors (TODO)
export NETHACKOPTIONS="nocolor"

# other aliases
alias ls='ls --color -F'
alias vim='vim -c "execute \"set <PageUp>=\\e[5;*~\" | execute \"set <PageDown>=\\e[6;*~\" | execute \"set ttymouse=xterm2\""'

# window title
PROMPT_COMMAND=${PROMPT_COMMAND:+$PROMPT_COMMAND; }'printf "\033[E%s@%s:%s\033[G" "${USER}" "${HOSTNAME%%.*}" "${PWD/#$HOME/~}"'
