mirror of
https://github.com/penpot/penpot.git
synced 2025-01-10 08:50:57 -05:00
15 lines
405 B
Bash
15 lines
405 B
Bash
#!/usr/bin/env bash
|
|
|
|
export PATH=/usr/lib/jvm/openjdk/bin:/usr/local/nodejs/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin
|
|
export JAVA_OPTS="-Xmx1000m -Xms50m"
|
|
|
|
alias l='ls --color -GFlh'
|
|
alias rm='rm -r'
|
|
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
|