Add alias for hugo and git private repos

This commit is contained in:
Nikurasu 2023-05-26 11:33:57 +02:00
parent 88ac2dee6a
commit 5e9079b466
Signed by: Nikurasu
GPG key ID: 9E7F14C03EF1F271

View file

@ -1,5 +1,5 @@
# yt-dlp
alias ytm-album="yt-dlp -x --audio-format m4a -f 141 -o \"%(playlist_index)s_%(artist)s_%(title)s.%(ext)s\""
alias ytm-album="yt-dlp -x --audio-format m4a -f 251 -o \"%(playlist_index)s_%(artist)s_%(title)s.%(ext)s\""
# copy public ip
alias cpip="curl ifconfig.me | pbcopy"
@ -9,3 +9,10 @@ alias packerSync="nvim --headless -c 'autocmd User PackerComplete quitall' -c 'P
# List gpg keys with long keys
alias gpgLongKeys="gpg --list-secret-keys --keyid-format=long"
# private git repo
alias git-set-private="git config user.name nikurasu && git config user.email publicmail@nikurasu.gay && git config user.signingkey 9E7F14C03EF1F271 && git config gpg.format openpgp"
# hugo
alias hugo='podman run --rm -v $(pwd):/src:z -w /src -p 42020:42020 klakegg/hugo:ext-debian'