]> git.rkrishnan.org Git - .emacs.d.git/commitdiff
Merge branch 'master' of github.com:vu3rdd/.emacs.d
authorRamakrishnan Muthukrishnan <ram@rkrishnan.org>
Sun, 6 Dec 2015 10:57:16 +0000 (16:27 +0530)
committerRamakrishnan Muthukrishnan <ram@rkrishnan.org>
Sun, 6 Dec 2015 10:57:16 +0000 (16:27 +0530)
1  2 
init.el

diff --combined init.el
index 72c06b54184d567f4d3379a71b92f60efa5d6036,0e9c17ff72b1ee5c4a132cf129cec70ec2fd6af4..1a7ba84a923528be168272fe1c1edcb16fcd8ec8
+++ b/init.el
@@@ -40,8 -40,8 +40,8 @@@
  (require 'package)
  (add-to-list 'package-archives
               '("melpa" . "http://melpa.milkbox.net/packages/") t)
 -(add-to-list 'package-archives
 -             '("marmalade" . "http://marmalade-repo.org/packages/") t)
 +;; (add-to-list 'package-archives
 +;;              '("marmalade" . "http://marmalade-repo.org/packages/") t)
  (package-initialize)
  
  ; fetch the list of packages available
@@@ -61,9 -61,7 +61,9 @@@
                       notmuch
                       railscasts-theme
                       racket-mode
 -                     auto-complete
 +                     company-mode
 +                     flycheck
 +                     flycheck-haskell
                       magit
                       ledger-mode))
  
@@@ -86,7 -84,8 +86,8 @@@
  (setq erc-autojoin-channels-alist
    '((".*\\.freenode.net" "#tahoe-lafs")
      (".*\\.oftc.net" "#LeastAuthority")
-     (".*\\.mozilla.org" "#rust-beginners")))
+     ;;(".*\\.mozilla.org" "#rust-beginners")
+     ))
  
  ;; check channels
  (erc-track-mode t)
    "Connect to IRC."
    (interactive)
    (when (y-or-n-p "Do you want to start IRC? ")
-     (erc-tls :server "irc.mozilla.org" :port 6697 :nick "rkrishnan" :full-name "Ramakrishnan Muthukrishnan")
+     ;;(erc-tls :server "irc.mozilla.org" :port 6697 :nick "rkrishnan" :full-name "Ramakrishnan Muthukrishnan")
      (erc-tls :server "irc.freenode.net" :port 6697 :nick "rkrishnan" :full-name "Ramakrishnan Muthukrishnan")
      (erc-tls :server "irc.oftc.net" :port 6697 :nick "rkrishnan" :full-name "Ramakrishnan Muthukrishnan")))
  
   ;; If there is more than one, they won't work right.
   )
  
 -;; auto complete
 -(ac-config-default)
 -(ac-linum-workaround)
 +;; company mode for auto completion
 +(add-hook 'after-init-hook 'global-company-mode)
  
  ;; highlight todo
  ;; (add-hook 'prog-mode-hook 'highlight-todos)