Skip to content

Instantly share code, notes, and snippets.

@gongo
Created October 20, 2012 07:08
Show Gist options
  • Save gongo/3922449 to your computer and use it in GitHub Desktop.
Save gongo/3922449 to your computer and use it in GitHub Desktop.
term-plus-el の el-get recipe
(:name term-plus-el
:description "term-mode enhancement"
:type github
:pkgname "tarao/term-plus-el"
:build `(("git" "submodule" "update" "--init")
("make" ,(format "EMACS=%s" el-get-emacs) "compile"))
:post-init (let ((libdir (concat (el-get-package-directory "term-plus-el") "/lib")))
(add-to-list 'load-path libdir)
(add-to-list 'load-path (concat libdir "/anything-config/extensions"))
(load-library "subdirs.el")
(add-subdirs-to-load-path libdir)
(require 'term+mux)
(require 'xterm-256color)
(require 'key-intercept)
(require 'multi-mode-util))
)
@gongo
Copy link
Author

gongo commented Oct 20, 2012

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment