aboutsummaryrefslogtreecommitdiffhomepage
path: root/.devcontainer/.bashrc
blob: 967fa144bbb079d66b2ed676f03a9e26fed1ec33 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
export LS_OPTIONS='-F --color=auto'
alias ls='ls $LS_OPTIONS'
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

if [ -d "$WORKSPACE_DIR/tools/bsim" ]; then
  export BSIM_OUT_PATH="$WORKSPACE_DIR/tools/bsim/"
  export BSIM_COMPONENTS_PATH="$WORKSPACE_DIR/tools/bsim/components/"
fi