diff options
author | Idan Gazit <idan@gazit.me> | 2020-10-09 17:49:42 -0700 |
---|---|---|
committer | Idan Gazit <idan@gazit.me> | 2020-10-09 19:09:11 -0700 |
commit | db40fbad598b6f84472cb2921df89f1a46fc6b5c (patch) | |
tree | deed33db725975c0832476c32e50c20180000f2f /.devcontainer/.bashrc | |
parent | 63931a706870652e649346e4052a9fb1b105ff5b (diff) |
Conditionally source zephyr-env.sh in .bashrc
Diffstat (limited to '.devcontainer/.bashrc')
-rw-r--r-- | .devcontainer/.bashrc | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/.devcontainer/.bashrc b/.devcontainer/.bashrc new file mode 100644 index 0000000..6a6ea69 --- /dev/null +++ b/.devcontainer/.bashrc @@ -0,0 +1,6 @@ +export LS_OPTIONS='-F --color=auto' +eval "`dircolors`" +alias ls='ls $LS_OPTIONS' +if [ -f /workspaces/zmk/zephyr/zephyr-env.sh ]; then + source /workspaces/zmk/zephyr/zephyr-env.sh +fi |