diff options
author | Ryan Kavanagh <rak@debian.org> | 2013-02-22 10:46:41 -0500 |
---|---|---|
committer | Ryan Kavanagh <rak@debian.org> | 2013-02-22 10:53:08 -0500 |
commit | bba5b64b1879e5a601f3e03500d384aaa39c374a (patch) | |
tree | 2e485ff8db671ece5073e7f538823287a4e61b35 | |
parent | Add LaTeX to auto-complete modes (diff) |
Add dictem module to emacs
Diffstat (limited to '')
-rw-r--r-- | .emacs | 4 | ||||
-rw-r--r-- | .gitmodules | 6 | ||||
-rw-r--r-- | emacsen/Makefile | 9 | ||||
m--------- | emacsen/dictem | 0 |
4 files changed, 17 insertions, 2 deletions
@@ -1,6 +1,7 @@ (add-to-list 'load-path "~/.emacs.d") (add-to-list 'load-path "~/.emacs.d/auto-indent-mode") (add-to-list 'load-path "~/.emacs.d/auto-complete") +(add-to-list 'load-path "~/.emacs.d/dictem") (add-to-list 'load-path "~/.emacs.d/popup") (add-to-list 'load-path "~/.emacs.d/magit") (add-to-list 'load-path "~/.emacs.d/markdown-mode") @@ -21,6 +22,9 @@ (require 'auto-indent-mode) (auto-indent-global-mode) +;;;; DICTEM +(require 'dictem) + ;;;; MAGIT (require 'magit) diff --git a/.gitmodules b/.gitmodules index 81c119d..1b5835c 100644 --- a/.gitmodules +++ b/.gitmodules @@ -16,3 +16,9 @@ [submodule "emacsen/markdown-mode"] path = emacsen/markdown-mode url = git://jblevins.org/git/markdown-mode.git +[submodule "dictem"] + path = dictem + url = git@github.com:cheusov/dictem.git +[submodule "emacsen/dictem"] + path = emacsen/dictem + url = git@github.com:cheusov/dictem.git diff --git a/emacsen/Makefile b/emacsen/Makefile index 3ee01e9..0e72249 100644 --- a/emacsen/Makefile +++ b/emacsen/Makefile @@ -5,6 +5,7 @@ export ELISPDIR SUBDIRS = auto-complete \ auto-indent-mode \ + dictem \ magit \ markdown-mode \ popup \ @@ -36,10 +37,10 @@ $(CLEANDIRS): $(MAKE) -C $(@:clean-%=%) clean # Manual overrides: -make-auto-indent-mode make-markdown-mode make-popup: +make-auto-indent-mode make-markdown-mode make-popup make-dictem: touch $@ -clean-auto-indent-mode clean-markdown-mode clean-popup: +clean-auto-indent-mode clean-markdown-mode clean-popup make-dictem: echo $@ make-auto-complete: @@ -56,6 +57,10 @@ install-auto-complete: install-auto-indent-mode: -mkdir -p $(EMACSD)/$(@:install-%=%) cp $(@:install-%=%)/auto-indent-mode.el $(EMACSD)/$(@:install-%=%) + +install-dictem: + -mkdir -p $(EMACSD)/$(@:install-%=%) + install -m 644 $(@:install-%=%)/*.el $(EMACSD)/$(@:install-%=%) install-color-theme-6.6.0: -mkdir -p $(EMACSD)/$(@:install-%=%) diff --git a/emacsen/dictem b/emacsen/dictem new file mode 160000 +Subproject a2329acfac889680d69855c574cfa1f5f2c90b3 |