blob: 7be90a38458eac335b793cc17fb0c51b902cd6ca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# source this file from your bash startup script
test -f /usr/bin/emacs && {
alias emacs="emacsclient --create-frame -t"
export ALTERNATE_EDITOR=""
export EDITOR="emacsclient -t"
}
test -f ~/.local/bin/emacs && {
alias emacs="emacs --emacs-appimage-run-as emacsclient --create-frame -t"
export ALTERNATE_EDITOR=""
export EDITOR="emacs --emacs-appimage-run-as emacsclient -t"
}
|