#!/bin/bash

# system preferences
export TERM="xterm-256color"
export LANG=en_US.UTF-8

# Prefered programs
export EDITOR='vim'

# Force ssh/ssh-add to always prompt for passphrases in the terminal. On WSL,
# DISPLAY is set (WSLg) and the ssh-askpass package is installed, so without
# this OpenSSH prefers popping up a GUI askpass dialog instead of asking here.
export SSH_ASKPASS_REQUIRE='never'

if type bat > /dev/null; then
    export MANPAGER='bat -plman'
    export PAGER='bat'
fi


# Change Path
export PATH="${PATH}:$HOME/.local/bin"
export PATH="${PATH}:$HOME/bin"
export PATH="${PATH}:$HOME/.cargo/bin"
