X-Git-Url: http://git.cielonegro.org/gitweb.cgi?a=blobdiff_plain;f=dot-files%2F_emacs_el;h=75b0e620679143115c956db1b4696976d032076e;hb=684156f7eae29ace1183e8ec570169d3ab6dc61e;hp=352263c6cc08c1c22d7c570498da712a9af84ede;hpb=3301249c1293a5101f7647da96417ebba15152c5;p=sugar.git diff --git a/dot-files/_emacs_el b/dot-files/_emacs_el index 352263c..75b0e62 100644 --- a/dot-files/_emacs_el +++ b/dot-files/_emacs_el @@ -88,6 +88,9 @@ ;; flyspell (require-if-present 'flyspell) +;; jaspace +(require-if-present 'jaspace) + ;; mic-paren (require-if-present 'mic-paren) (if (featurep 'mic-paren) @@ -100,6 +103,13 @@ ;; MPC ;(require-if-present 'mpc-autoloads) +;; rst-mode +(autoload 'rst-mode "rst" + "mode for editing reStructuredText documents" t) +(setq auto-mode-alist + (append '(("\\.rst$" . rst-mode) + ("\\.rest$" . rst-mode)) auto-mode-alist)) + ;; twittering-mode (require-if-present 'twittering-mode) (setq twittering-username "phonohawk") @@ -367,6 +377,7 @@ '(jabber-resource "emacs") '(jabber-server "jabber.jp") '(jabber-username "phonohawk") + '(jaspace-highlight-tabs t) '(js2-basic-offset 4) '(js2-indent-on-enter-key t) '(js2-use-font-lock-faces t) @@ -412,4 +423,5 @@ ;; Your init file should contain only one such instance. ;; If there is more than one, they won't work right. '(flyspell-incorrect ((t (:foreground "OrangeRed" :overline t)))) + '(jaspace-highlight-tab-face ((((class color) (background dark)) (:foreground "gray70" :underline t)))) '(which-func-face ((t (:background "black" :foreground "dark orange")))))