Add mkcd and gitignore helper functions

This commit is contained in:
Jonas Müller 2026-03-23 20:00:00 +00:00
parent 5394ffccc3
commit 38013a1584

View file

@ -25,3 +25,12 @@ abbr -a dc 'docker compose'
# Prompt
starship init fish | source
# Functions
function mkcd
mkdir -p $argv[1] && cd $argv[1]
end
function gitignore
curl -sL "https://www.toptal.com/developers/gitignore/api/$argv"
end