Skip to content

The emacs configuration I am currently using. Hope this helps others.

License

Notifications You must be signed in to change notification settings

alkmim/emacsconfig

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

37 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

emacsconfig

The emacs configuration I am currently using. Hope this helps others.

Binding eshell to a shortcut in openbox.

To bind eshell to W-a, add the following lines to rc.xml, in the section:

  <keyboard>
[...]
    <keybind key="W-a">
      <action name="Execute">
        <startupnotify>
          <enabled>true</enabled>
          <name>Open Terminal</name>
        </startupnotify>
        <command>emacsclient -c -e '(eshell t)'</command>
      </action>
    </keybind>
[...]
  </keyboard>

Binding multi-term to a shortcut in openbox.

To bind multi-term to W-a, add the following lines to rc.xml, in the section:

  <keyboard>
[...]
    <keybind key="W-a">
      <action name="Execute">
        <startupnotify>
          <enabled>true</enabled>
          <name>Open Terminal</name>
        </startupnotify>
        <command>emacsclient -c -e '(multi-term)'</command>
      </action>
    </keybind>
[...]
  </keyboard>

About

The emacs configuration I am currently using. Hope this helps others.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages