Skip to content

Latest commit

 

History

History
48 lines (37 loc) · 1.34 KB

emacs-server.org

File metadata and controls

48 lines (37 loc) · 1.34 KB

Emacs Server Configuration

This file is a smaller subset of my Emacs configuration file oriented for servers.

Needed Packages

(packages-install '( emmax ))

Key Bindings

If I am running on server, then I might as well attempt to pretend I’m on a desktop:

(cua-mode t)

TMux Integration

(when (getenv "TMUX")
  (require 'emamux)
  (global-set-key (kbd "M-!") 'emamux:run-command)
  (global-set-key (kbd "C-x !") 'emamux:send-command)
  (global-set-key (kbd "C-x ~") 'emamux:emamux:close-runner-pane))

Technical Artifacts

Before you can build this on a new system, make sure that you put the cursor over any of these properties, and hit: C-c C-c