Skip to content

Instantly share code, notes, and snippets.

@developernotes
Created April 2, 2011 20:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save developernotes/899878 to your computer and use it in GitHub Desktop.
Save developernotes/899878 to your computer and use it in GitHub Desktop.
Launch the emacs daemon at login
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>emacs-daemon</string>
<key>RunAtLoad</key>
<true/>
<key>Program</key>
<string>/Users/nickp/bin/scripts/launch-emacs-daemon.sh</string>
</dict>
</plist>
#!/bin/zsh
emacs --daemon
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment