diff --git a/doom/init.el b/doom/init.el index 7914751..25eb397 100644 --- a/doom/init.el +++ b/doom/init.el @@ -132,7 +132,7 @@ ;;kotlin ; a better, slicker Java(Script) latex ; writing papers in Emacs has never been so fun ;;lean ; for folks with too much to prove - ;;ledger ; be audit you can be + ledger ; be audit you can be lua ; one-based indices? one-based indices markdown ; writing docs for people to ignore ;;nim ; python + lisp at the speed of c diff --git a/shell/aliases.sh b/shell/aliases.sh index 4c9f0a4..ef0a798 100644 --- a/shell/aliases.sh +++ b/shell/aliases.sh @@ -47,7 +47,8 @@ alias \ qr-png="qrencode -s 16 -o qr.png" \ qr="qrencode -t ansiutf8" \ clip="xsel -ib" \ - em="emacsclient -c -a 'emacs' $@" \ wget="wget --hsts-file=$XDG_DATA_HOME/wget/wget-hsts" \ ssh="ssh ${SSH_CONFIG}" \ + scp="scp ${SSH_CONFIG}" \ + rsync="rsync --rsh \"ssh ${SSH_CONFIG}\"" \ lg="lazygit" diff --git a/wrappers/em b/wrappers/em new file mode 100755 index 0000000..09d2fca --- /dev/null +++ b/wrappers/em @@ -0,0 +1,3 @@ +#!/bin/sh + +emacsclient -c -a 'emacs' $@