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