zmk_mf68/.devcontainer/.bashrc

9 lines
252 B
Bash
Raw Normal View History

export LS_OPTIONS='-F --color=auto'
alias ls='ls $LS_OPTIONS'
2020-10-13 08:23:34 +11:00
if [ "${CODESPACES}" = "true" ]; then
export WORKSPACE_DIR="$HOME/workspace/zmk"
fi
if [ -f "$WORKSPACE_DIR/zephyr/zephyr-env.sh" ]; then
source "$WORKSPACE_DIR/zephyr/zephyr-env.sh"
fi