Overview
Comment: | zshrc: Fix gpg-* aliases, add mpv alias |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA3-256: |
85778c1c838dbd49b8a2b7dd66b11195 |
User & Date: | js 2020-02-28 01:02:32 |
Context
2020-02-28
| ||
01:05 | pw(s).fish: Fix key path check-in: ab536054ec user: js tags: trunk | |
01:02 | zshrc: Fix gpg-* aliases, add mpv alias check-in: 85778c1c83 user: js tags: trunk | |
2020-02-27
| ||
20:59 | Import missing ftplugin/fish.vim check-in: 99f7e3472e user: js tags: trunk | |
Changes
Changes to zshrc.
︙ | ︙ | |||
195 196 197 198 199 200 201 | # pkgsrc does not like MAKEFLAGS including -j which pkg_chk &>/dev/null && alias pkg_chk="MAKEFLAGS= pkg_chk" which pkg_rolling-replace &>/dev/null && alias pkg_rolling-replace="MAKEFLAGS= pkg_rolling-replace" which url2pkg &>/dev/null && alias url2pkg="MAKEFLAGS= url2pkg" | > > > | | | | 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 | # pkgsrc does not like MAKEFLAGS including -j which pkg_chk &>/dev/null && alias pkg_chk="MAKEFLAGS= pkg_chk" which pkg_rolling-replace &>/dev/null && alias pkg_rolling-replace="MAKEFLAGS= pkg_rolling-replace" which url2pkg &>/dev/null && alias url2pkg="MAKEFLAGS= url2pkg" # mpv does not like locales that use , as decimal point. alias mpv="LC_ALL=C mpv" alias gpg-ssh="SSH_AUTH_SOCK=$GNUPGHOME/S.gpg-agent.ssh ssh" alias gpg-ssh-add="SSH_AUTH_SOCK=$GNUPGHOME/S.gpg-agent.ssh ssh-add" alias gpg-sftp="SSH_AUTH_SOCK=$GNUPGHOME/S.gpg-agent.ssh sftp" __pw() { local clipboard if which pbcopy &>/dev/null; then clipboard=pbcopy elif which xclip &>/dev/null; then clipboard=xclip |
︙ | ︙ |