Created
October 20, 2012 07:08
-
-
Save gongo/3922449 to your computer and use it in GitHub Desktop.
term-plus-el の el-get recipe
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(: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)) | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
自分用の emacs lisp deploy system https://github.com/gongo/elfactory/blob/master/el-get-recipes/term-plus-el.rcp に登録 DONE