]> git.rkrishnan.org Git - .emacs.d.git/blob - init.el
disable irc.mozilla.org, highlight todos
[.emacs.d.git] / init.el
1 (show-paren-mode 1)
2 ;; y-or-n instead of yes-or-no
3 (defalias 'yes-or-no-p 'y-or-n-p)
4
5 ;; Don't use messages that you don't rea
6 (setq make-backup-files nil)
7 (setq initial-scratch-message "")
8 (setq inhibit-startup-message t)
9
10 ;; cursor bar
11 (setq-default cursor-type '(bar . 2))
12
13 ;; column number
14 (column-number-mode 1)
15
16 ;; font
17 ;; (set-default-font "Inconsolata-12")
18
19 ;; Don't let Emacs hurt your ears
20 (setq visible-bell t)
21
22 ;; This is bound to f11 in Emacs 24.4
23 ;; (toggle-frame-fullscreen)
24 (custom-set-variables
25  ;; custom-set-variables was added by Custom.
26  ;; If you edit it by hand, you could mess it up, so be careful.
27  ;; Your init file should contain only one such instance.
28  ;; If there is more than one, they won't work right.
29  '(initial-frame-alist (quote ((fullscreen . maximized))))
30  '(send-mail-function (quote smtpmail-send-it)))
31 ;; Who use the bar to scroll?
32 (when (display-graphic-p)
33   (progn
34     (scroll-bar-mode 0)
35
36     (tool-bar-mode 0)
37     (menu-bar-mode 0)))
38
39 ; my-packages.el
40 (require 'package)
41 (add-to-list 'package-archives
42              '("melpa" . "http://melpa.milkbox.net/packages/") t)
43 (add-to-list 'package-archives
44              '("marmalade" . "http://marmalade-repo.org/packages/") t)
45 (package-initialize)
46
47 ; fetch the list of packages available
48 (unless package-archive-contents
49   (package-refresh-contents))
50
51 ;; make sure my list of packages are installed
52 (setq package-list '(go-mode
53                      rust-mode
54                      haskell-mode
55                      ghc
56                      restclient
57                      tangotango-theme
58                      fill-column-indicator
59                      paredit
60                      leuven-theme
61                      notmuch
62                      railscasts-theme
63                      racket-mode
64                      auto-complete
65                      magit
66                      ledger-mode))
67
68 ; install the missing packages
69 (dolist (package package-list)
70   (unless (package-installed-p package)
71     (package-install package)))
72
73 ;; tangotango
74 ;; (load-theme 'tangotango t)
75 ;; (load-theme 'railscasts t)
76 ;; (load-theme 'leuven t)
77
78 ;; erc
79 (require 'erc)
80 (require 'tls)
81 ;; (setq tls-program '("openssl s_client -connect %h:%p -no_ssl2 -ign_eof"))
82
83 (erc-autojoin-mode t)
84 (setq erc-autojoin-channels-alist
85   '((".*\\.freenode.net" "#tahoe-lafs")
86     (".*\\.oftc.net" "#LeastAuthority")
87     ;;(".*\\.mozilla.org" "#rust-beginners")
88     ))
89
90 ;; check channels
91 (erc-track-mode t)
92 (setq erc-track-exclude-types '("JOIN" "NICK" "PART" "QUIT" "MODE"
93                                  "324" "329" "332" "333" "353" "477"))
94 ;; don't show any of this
95 (setq erc-hide-list '("JOIN" "PART" "QUIT" "NICK"))
96
97 (defun start-erc ()
98   "Connect to IRC."
99   (interactive)
100   (when (y-or-n-p "Do you want to start IRC? ")
101     ;;(erc-tls :server "irc.mozilla.org" :port 6697 :nick "rkrishnan" :full-name "Ramakrishnan Muthukrishnan")
102     (erc-tls :server "irc.freenode.net" :port 6697 :nick "rkrishnan" :full-name "Ramakrishnan Muthukrishnan")
103     (erc-tls :server "irc.oftc.net" :port 6697 :nick "rkrishnan" :full-name "Ramakrishnan Muthukrishnan")))
104
105 ;; switch to ERC with Ctrl+c e
106 (global-set-key (kbd "C-c e") 'start-erc) ;; ERC
107
108 ;; haskell mode
109 (setenv "PATH" (concat "~/.cabal/bin:" (getenv "PATH")))
110 (add-to-list 'exec-path "~/.cabal/bin")
111 (add-hook 'haskell-mode-hook 'turn-on-haskell-doc-mode)
112
113 ;; haskell mode
114 (require 'haskell-interactive-mode)
115 (require 'haskell-process)
116 (add-hook 'haskell-mode-hook 'interactive-haskell-mode)
117
118 (custom-set-variables
119   '(haskell-process-suggest-remove-import-lines t)
120   '(haskell-process-auto-import-loaded-modules t)
121   '(haskell-process-log t)
122   '(haskell-process-type 'stack-ghci))
123
124 (define-key haskell-mode-map (kbd "C-c C-l") 'haskell-process-load-or-reload)
125 (define-key haskell-mode-map (kbd "C-`") 'haskell-interactive-bring)
126 (define-key haskell-mode-map (kbd "C-c C-t") 'haskell-process-do-type)
127 (define-key haskell-mode-map (kbd "C-c C-i") 'haskell-process-do-info)
128 (define-key haskell-mode-map (kbd "C-c C-c") 'haskell-process-cabal-build)
129 (define-key haskell-mode-map (kbd "C-c C-k") 'haskell-interactive-mode-clear)
130 (define-key haskell-mode-map (kbd "C-c c") 'haskell-process-cabal)
131 (define-key haskell-mode-map (kbd "SPC") 'haskell-mode-contextual-space)
132
133 ;; ghc-mod
134 (autoload 'ghc-init "ghc" nil t)
135 (autoload 'ghc-debug "ghc" nil t)
136 (setq ghc-debug t)
137 (add-hook 'haskell-mode-hook (lambda () (ghc-init)))
138
139 ;; ido
140 (setq ido-enable-flex-matching t)
141 (setq ido-everywhere t)
142 (ido-mode 1)
143
144 ;; disable tabs for indentation
145 (setq-default indent-tabs-mode nil)
146
147 ;; (require 'whitespace)
148 ;; (setq whitespace-style '(face lines-tail))
149 ;; (setq whitespace-line-column 80)
150 ;; (global-whitespace-mode t)
151
152 ;; ;; show trailing whitespaces
153 ;; (setq-default show-trailing-whitespace t)
154 ;; (setq-default indicate-empty-lines t)
155
156 ;; C style
157 (setq c-default-style "k&r"
158       c-basic-offset 4)
159
160 ;; hlint
161 (add-to-list 'load-path "~/.emacs.d/hs-lint")
162 (require 'hs-lint)
163 (defun my-haskell-mode-hook ()
164    (local-set-key "\C-cl" 'hs-lint))
165 (add-hook 'haskell-mode-hook 'my-haskell-mode-hook)
166
167 ;; gofmt
168 (add-hook 'before-save-hook #'gofmt-before-save)
169 (add-hook 'go-mode-hook (lambda ()
170                           (local-set-key (kbd "C-c C-r")
171                                          'go-remove-unused-imports)))
172 (add-hook 'go-mode-hook (lambda ()
173                           (local-set-key (kbd "C-c i")
174                                          'go-goto-imports)))
175
176 ;; asp
177 (add-to-list 'load-path "~/.emacs.d/asp-mode")
178 (autoload 'asp-mode "asp-mode")
179 (setq auto-mode-alist
180       (cons '("\\.asp\\'" . asp-mode) auto-mode-alist))
181
182 ;; line-number-mode
183 (global-linum-mode t)
184 (global-hl-line-mode 0)
185
186 ;; fci -- fill-column-indicator
187 (setq fci-rule-column 81)
188 (setq fci-rule-width 1)
189 (setq fci-rule-color "darkblue")
190
191 ;; turn off electric-indent-mode
192 (when (fboundp 'electric-indent-mode) (electric-indent-mode -1))
193
194 ;; notmuch
195 (setq mail-user-agent 'message-user-agent)
196 (setq user-mail-address "ram@rkrishnan.org"
197       user-full-name "Ramakrishnan Muthukrishnan")
198
199 ;; smtp
200 (setq smtpmail-stream-type 'ssl
201       smtpmail-smtp-server "mail.messagingengine.com"
202       smtpmail-smtp-service 465)
203
204 ;; addressbook
205 (require 'notmuch-address)
206 (setq notmuch-address-command "/usr/bin/notmuch-addrlookup")
207 (notmuch-address-message-insinuate)
208
209 (require 'smtpmail)
210 (setq message-send-mail-function 'smtpmail-send-it)
211 (require 'starttls)
212
213 ;; sign all emails
214 (add-hook 'message-setup-hook 'mml-secure-message-sign-pgp)
215
216 (custom-set-faces
217  ;; custom-set-faces was added by Custom.
218  ;; If you edit it by hand, you could mess it up, so be careful.
219  ;; Your init file should contain only one such instance.
220  ;; If there is more than one, they won't work right.
221  )
222
223 ;; auto complete
224 (ac-config-default)
225 (ac-linum-workaround)
226
227 ;; highlight todo
228 ;; (add-hook 'prog-mode-hook 'highlight-todos)
229
230 ;; Ledger
231 (setq ledger-binary-path "~/.cabal/bin/hledger")
232
233 ;; golang
234 (setq exec-path (cons "/usr/local/go/bin" exec-path))
235 (add-to-list 'exec-path (concat (getenv "GOPATH") "/bin"))
236
237 (defun go-mode-setup ()
238   (go-eldoc-setup)
239   (setq gofmt-command "goimports")
240   (add-hook 'before-save-hook 'gofmt-before-save))
241
242 (add-hook 'go-mode-hook 'go-mode-setup)
243
244 ;; alias man to w.o.man
245 (defalias 'man 'woman)
246
247 ;; eshell aliases
248 (defun eshell/emacs (&rest args)
249   "open a file in emacs"
250   (if (null args)
251       (bury-buffer)
252     (mapc #'find-file (mapcar #'expand-file-name (eshell-flatten-list (reverse args))))))
253
254 ;(desktop-save-mode 1)
255