mirror of
https://github.com/penpot/penpot.git
synced 2025-02-01 11:59:17 -05:00
12 lines
237 B
Bash
12 lines
237 B
Bash
#!/usr/bin/env bash
|
|
|
|
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
|