changeset 42:8774f0539f92

Some erc customisations plus a few more safe local variables
author Jordi Gutiérrez Hermoso <jordigh@gmail.com>
date Tue, 26 Jul 2011 19:17:49 -0500
parents 02441454df4d
children 502a9f3c0d91
files dotemacs.el
diffstat 1 files changed, 19 insertions(+), 11 deletions(-) [+]
line wrap: on
line diff
--- a/dotemacs.el
+++ b/dotemacs.el
@@ -1,8 +1,8 @@
 (custom-set-variables
- ;; custom-set-variables was added by Custom.
- ;; If you edit it by hand, you could mess it up, so be careful.
- ;; Your init file should contain only one such instance.
- ;; If there is more than one, they won't work right.
+  ;; custom-set-variables was added by Custom.
+  ;; If you edit it by hand, you could mess it up, so be careful.
+  ;; Your init file should contain only one such instance.
+  ;; If there is more than one, they won't work right.
  '(LaTeX-indent-level 2)
  '(LaTeX-item-indent 0)
  '(TeX-PDF-mode t)
@@ -36,8 +36,8 @@
  '(ecb-options-version "2.32")
  '(ecb-tip-of-the-day nil)
  '(ediff-split-window-function (quote split-window-horizontally))
- '(erc-input-line-position 0)
- '(erc-modules (quote (autojoin button completion fill irccontrols list match menu move-to-prompt netsplit networks noncommands readonly ring scrolltobottom stamp track)))
+ '(erc-input-line-position 0 t)
+ '(erc-modules (quote (highlight-nicknames scrolltobottom completion autojoin button fill irccontrols list match menu move-to-prompt netsplit networks noncommands readonly ring stamp track)))
  '(global-font-lock-mode t nil (font-lock))
  '(indent-tabs-mode nil)
  '(inhibit-startup-buffer-menu t)
@@ -52,7 +52,7 @@
  '(make-backup-files nil)
  '(menu-bar-mode t)
  '(py-python-command "ipython")
- '(safe-local-variable-values (quote ((nil (mode . html) (mode . longlines)) (longlines-mode \.) (html-mode \.) (longlines-mode) (html-mode))))
+ '(safe-local-variable-values (quote ((py-indent-offset . 4) (nil (mode . html) (mode . longlines)) (longlines-mode \.) (html-mode \.) (longlines-mode) (html-mode))))
  '(savehist-mode t nil (savehist))
  '(show-paren-mode t)
  '(tab-width 2)
@@ -65,10 +65,10 @@
  '(w3m-default-display-inline-images t)
  '(w3m-use-cookies t))
 (custom-set-faces
- ;; custom-set-faces was added by Custom.
- ;; If you edit it by hand, you could mess it up, so be careful.
- ;; Your init file should contain only one such instance.
- ;; If there is more than one, they won't work right.
+  ;; custom-set-faces was added by Custom.
+  ;; If you edit it by hand, you could mess it up, so be careful.
+  ;; Your init file should contain only one such instance.
+  ;; If there is more than one, they won't work right.
  '(default ((t (:inherit nil :stipple nil :background "grey20" :foreground "white" :inverse-video nil :box nil :strike-through nil :overline nil :underline nil :slant normal :weight normal :height 98 :width normal :foundry "unknown" :family "Liberation Mono"))))
  '(diff-added ((t (:foreground "green"))))
  '(diff-changed ((t (:foreground "orange"))))
@@ -77,6 +77,11 @@
  '(diff-refine-change ((((class color) (min-colors 88) (background dark)) (:background "#004090"))))
  '(diff-removed ((t (:foreground "red"))))
  '(ecb-tag-header-face ((((class color) (background dark)) (:background "DarkGreen"))))
+ '(erc-input-face ((t (:foreground "yellow"))))
+ '(erc-my-nick-face ((t (:foreground "lightblue" :weight bold))))
+ '(erc-notice-face ((t (:foreground "lightgreen" :weight bold))))
+ '(rst-level-1-face ((t (:background "darkgreen"))) t)
+ '(rst-level-2-face ((t (:background "#008800"))) t)
  '(show-ws-tab ((t (:background "Black"))))
  '(stripes-face ((t (:background "#444")))))
 
@@ -95,6 +100,9 @@
 
 (require 'stripes)
 
+;(require 'erc-highlight-mode)
+(setq erc-input-line-position -2)
+
 ;; Use org-mode to write blogthings
 (setq load-path (cons "~/.emacs.d/plugins/org2blog/" load-path))
 (require 'org2blog)