adding dotfiles

This commit is contained in:
2023-04-11 07:32:07 -07:00
parent f9465bb408
commit ce4d2b94a2
43 changed files with 39339 additions and 0 deletions

15
roles/dotfiles/files/bin/em Executable file
View File

@@ -0,0 +1,15 @@
#!/usr/bin/env bash
if [ -z "$DISPLAY" ]
then
NW=""
else
NW="-n"
fi
if [ -z "$@" ]
then
cd $HOME
fi
emacsclient $NW -c -a '' "$@"