blob: d679ed91f8dc54255bcf37ae9baf02893f463f17 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#!/bin/zsh
# ACME shell
#
# Various configuration that makes ACME 'win' windows nicer
# to use. This is treated like a device of its own, even
# though it really isn't.
export EDITOR=E
path=("$DOTFILES/scripts/acme" "$DOTFILES/scripts/acme_dynamic" $path)
export PATH
# Well, we tried this, but gpg-agent apparently insists on reading
# from a strictly hard-coded file. No high jinks. It certainly doesn't
# care about the PATH of the calling tty. This is just kept as reference.
#
# if [[ -v DEVICE_HAS_GPG ]]; then
# ln -s "$(which pinentry-tty)" "$DOTFILES/scripts/acme_dynamic/pinentry"
# fi
alias git='git --no-pager'
alias ls='ls -1'
|