]> git.rkrishnan.org Git - .emacs.d.git/commitdiff
remove go-mode, slime and other cruft.
authorRamakrishnan Muthukrishnan <ram@rkrishnan.org>
Tue, 23 Dec 2014 07:20:34 +0000 (12:50 +0530)
committerRamakrishnan Muthukrishnan <ram@rkrishnan.org>
Tue, 23 Dec 2014 07:20:34 +0000 (12:50 +0530)
init.el

diff --git a/init.el b/init.el
index 3c57e338a5b170a7287cda9777b6ead8cb620f53..9f0ad8b5cd58c2881f7d46b0bdf0130fba64dea2 100644 (file)
--- a/init.el
+++ b/init.el
@@ -40,7 +40,7 @@
   (package-refresh-contents))
 
 ;; make sure my list of packages are installed
-(setq package-list '(rust-mode haskell-mode monokai-theme ghc slime go-mode))
+(setq package-list '(rust-mode haskell-mode monokai-theme ghc))
 
 ; install the missing packages
 (dolist (package package-list)
 
 ;; erc
 (require 'erc)
+(require 'tls)
+(setq tls-program '("openssl s_client -connect %h:%p -no_ssl2 -ign_eof"))
 
 (erc-autojoin-mode t)
 (setq erc-autojoin-channels-alist
-  '((".*\\.freenode.net" "#haskell" "#tahoe-lafs")
-    (".*\\.oftc.net" "#LeastAuthority")))
+  '((".*\\.freenode.net" "#haskell-beginners")
+    (".*\\.oftc.net" "#LeastAuthority")
+    (".*\\.saju.net.in" "#cs")))
 
 ;; check channels
 (erc-track-mode t)
@@ -70,8 +73,9 @@
   "Connect to IRC."
   (interactive)
   (when (y-or-n-p "Do you want to start IRC? ")
-    (erc :server "irc.freenode.net" :port 6667 :nick "rkrishnan" :full-name "Ramakrishnan Muthukrishnan")
-    (erc :server "irc.oftc.net" :port 6667 :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")
+    (erc-tls :server "saju.net.in" :port 6697 :nick "ramki" :full-name "Ramakrishnan Muthukrishnan")))
 
 ;; switch to ERC with Ctrl+c e
 (global-set-key (kbd "C-c e") 'start-erc) ;; ERC
 ;; haskell mode
 (setenv "PATH" (concat "~/.cabal/bin:" (getenv "PATH")))
 (add-to-list 'exec-path "~/.cabal/bin")
+;; (add-hook 'haskell-mode-hook 'haskell-indent-mode)
+;; (add-hook 'haskell-mode-hook 'interactive-haskell-mode)
 (add-hook 'haskell-mode-hook 'turn-on-haskell-indent)
-;; (add-hook 'haskell-mode-hook 'turn-on-haskell-indentation)
+(add-hook 'haskell-mode-hook 'turn-on-haskell-indentation)
 
 ;; ocaml
 (add-hook 'tuareg-mode-hook 'tuareg-imenu-set-imenu)
 (autoload 'ghc-init "ghc" nil t)
 (autoload 'ghc-debug "ghc" nil t)
 (add-hook 'haskell-mode-hook (lambda () (ghc-init)))
-
-;; erc
-(require 'erc)
-
-(erc-autojoin-mode t)
-(setq erc-autojoin-channels-alist
-'((".*\\.freenode.net" "#tahoe-lafs")
-(".*\\.oftc.net" "#LeastAuthority")))
-
-;; check channels
-(erc-track-mode t)
-(setq erc-track-exclude-types '("JOIN" "NICK" "PART" "QUIT" "MODE"
-
-"324" "329" "332" "333" "353" "477"))
-;; don't show any of this
-(setq erc-hide-list '("JOIN" "PART" "QUIT" "NICK"))
-
-(defun start-erc ()
-"Connect to IRC."
-(interactive)
-(when (y-or-n-p "Do you want to start IRC? ")
-(erc :server "irc.freenode.net" :port 6667 :nick "rkrishnan" :full-name "Ramakrishnan Muthukrishnan")
-(erc :server "irc.oftc.net" :port 6667 :nick "rkrishnan" :full-name "Ramakrishnan Muthukrishnan")))
-
-;; switch to ERC with Ctrl+c e
-(global-set-key (kbd "C-c e") 'start-erc) ;; ERC
-
-;; sbcl
-(setq inferior-lisp-program "/usr/local/bin/sbcl")
-(require 'slime-autoloads)
-(add-to-list 'slime-contribs '(slime-fancy))
-(eval-after-load 'slime
-  `(define-key slime-prefix-map (kbd "M-h") 'slime-documentation-lookup))
+