penpot/docker/devenv/files/bashrc
2024-11-14 14:38:40 +01:00

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