mirror of
https://github.com/penpot/penpot.git
synced 2026-02-05 04:02:03 -05:00
19 lines
484 B
Bash
19 lines
484 B
Bash
#!/usr/bin/env bash
|
|
|
|
EMSDK_QUIET=1 . /opt/emsdk/emsdk_env.sh;
|
|
|
|
export PATH="/home/penpot/.cargo/bin:/opt/jdk/bin:/opt/utils/bin:/opt/clojure/bin:/opt/node/bin:/opt/imagick/bin:/opt/cargo/bin:$PATH"
|
|
export CARGO_HOME="/home/penpot/.cargo"
|
|
|
|
alias l='ls --color -GFlh'
|
|
alias ll='ls --color -GFlh'
|
|
alias rm='rm -rf'
|
|
alias ls='ls --color -F'
|
|
alias lsd='ls -d *(/)'
|
|
alias lsf='ls -h *(.)'
|
|
|
|
# include .bashrc if it exists
|
|
if [ -f "$HOME/.bashrc.local" ]; then
|
|
. "$HOME/.bashrc.local"
|
|
fi
|