-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathemacs
399 lines (335 loc) · 12.2 KB
/
emacs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
;;
;; Package archive for Emacs
;;
(require 'package)
(add-to-list 'package-archives
'("gnu" . "https://elpa.gnu.org/packages/"))
(add-to-list 'package-archives
'("melpa" . "https://melpa.org/packages/"))
(add-to-list 'package-archives
'("org" . "https://orgmode.org/elpa/") t)
(setq package-enable-at-startup nil) ;; To avoid initializing twice
(package-initialize)
;; Bootstrap use-package
(unless (package-installed-p 'use-package)
(package-refresh-contents)
(package-install 'use-package))
(require 'use-package)
;;
;; Load user customisations
;;
(use-package emacs-custom-settings
:load-path "lisp/")
;;
;; Look and feel
;;
;; Better frame titles
(setq frame-title-format (concat "%b - emacs@" system-name))
;; More screen space
(tool-bar-mode 0)
(menu-bar-mode 0)
;; Position information
(setq line-number-mode t)
(setq column-number-mode t)
(global-linum-mode t)
(global-hl-line-mode t)
;; Indicate the percentage of the buffer above the top of the window
(setq size-indication-mode t)
;; Mark the buffer boundaries in the fringes
(setq-default indicate-buffer-boundaries 'left)
;; Highlight trailing empty lines and whitespace
(setq-default indicate-empty-lines t)
(setq-default show-trailing-whitespace t)
;; Enable AnsiColor for the shell
(autoload 'ansi-color-for-comint-mode-on "ansi-color" nil t)
(add-hook 'shell-mode-hook 'ansi-color-for-comint-mode-on)
;; Display time
(setq display-time-day-and-date t) ; Display time and date
(setq display-time-24hr-format t) ; Display the time in 24hr format
(display-time-mode t)
(defun initialise-layout-parameters ()
(setq layout-hash (make-hash-table :test 'equal))
;; Set the size and x,y position of the initial and default emacs frames
(puthash "top" 0 layout-hash)
(puthash "left" 0 layout-hash)
(puthash "width" 80 layout-hash)
(puthash "height" 40 layout-hash)
(puthash "vertical-scroll-bars" "right" layout-hash)
;; Set the default frame colours and fonts
(puthash "foreground-color" "white" layout-hash)
(puthash "background-color" "black" layout-hash)
(puthash "cursor-color" "white" layout-hash)
(puthash "font" "dejavu sans mono-10" layout-hash))
(initialise-layout-parameters)
(if (fboundp 'custom-frame-layout) (custom-frame-layout))
;; Set the default layout of emacs frames
(setq default-frame-alist
`((top . ,(gethash "top" layout-hash))
(left . ,(gethash "left" layout-hash))
(width . ,(gethash "width" layout-hash))
(height . ,(gethash "height" layout-hash))
(vertical-scroll-bars . ,(gethash "vertical-scroll-bars" layout-hash))
(foreground-color . ,(gethash "foreground-color" layout-hash))
(background-color . ,(gethash "background-color" layout-hash))
(cursor-color . ,(gethash "cursor-color" layout-hash))
(font . ,(gethash "font" layout-hash))))
;;
;; Behaviour
;;
;; Suppress the start-up screen
(setq inhibit-startup-screen t)
;; Confirm before exiting emacs
(if (boundp 'confirm-kill-emacs)
(setq confirm-kill-emacs 'yes-or-no-p))
;; Highlight matching parentheses
(show-paren-mode t)
;; Always use spaces to indent, no tab
(set-default 'indent-tabs-mode nil)
;; Scroll one line at a time
(setq
scroll-step 1
scroll-conservatively 100000
scroll-preserve-screen-position 1)
;; start the emacs server automatically
(server-start)
;;
;; Tools
;;
;; Enable ido mode
(use-package ido
:ensure t
:init
(ido-mode t)
;; enable fuzzy matching
(setq ido-enable-flex-matching t))
;; Enable smex mode
(use-package smex
:ensure t
:bind
("M-x" . smex)
("M-X" . smex-major-mode-commands))
;; Enable undo-tree
(use-package undo-tree
:ensure t
:init
(global-undo-tree-mode t)
:bind
("C-z" . undo)
("C-M-Z" . undo-tree-redo))
;; Enable auto-complete
(use-package auto-complete
:ensure t
:config
(global-auto-complete-mode t))
;; Highlight text that extends beyond a certain column
(use-package column-enforce-mode
:ensure t
:config
(global-column-enforce-mode t))
;; Draw a line to indicate 80 column mark
(use-package fill-column-indicator
:ensure t
:init
(define-globalized-minor-mode global-fci-mode fci-mode turn-on-fci-mode)
(global-fci-mode t)
(setq-default fill-column 80)
(setq fci-rule-character ?│)
(setq fci-rule-character-color "grey15"))
;; Enable evil-mode
(use-package evil
:ensure t
:init
(evil-mode 0)
:config
(defun my-esc (prompt)
"Evil insert state esc == C-g binding"
(cond
;; If we're in an Evil state that defines [escape], return [escape] so that
;; Key Lookup will use it:
((or (evil-insert-state-p) (evil-normal-state-p) (evil-replace-state-p)
(evil-visual-state-p)) [escape])
(t (kbd "C-g"))))
;; Define some useful vim-like key bindings, and bindings to get around annoying
;; terminal <esc> key -> alt-key behaviour:
(define-prefix-command 'my-window-map)
(global-set-key (kbd "C-w") 'my-window-map)
(define-key my-window-map (kbd "<left>") 'windmove-left)
(define-key my-window-map (kbd "<right>") 'windmove-right)
(define-key my-window-map (kbd "<up>") 'windmove-up)
(define-key my-window-map (kbd "<down>") 'windmove-down)
(define-key my-window-map (kbd "%") 'split-window-right)
(define-key my-window-map (kbd "\"") 'split-window-below)
(define-key my-window-map (kbd "RET") 'windresize)
(define-key key-translation-map (kbd "C-g") 'my-esc)
(define-key evil-operator-state-map (kbd "C-g") 'keyboard-quit)
(add-to-list 'evil-emacs-state-modes 'git-rebase-mode)
(add-to-list 'evil-emacs-state-modes 'git-commit-mode)
)
;; Enable org-mode
(use-package org-mode
:init
;; Automatically activate org-mode for files with a .org and .txt extension
(add-to-list 'auto-mode-alist '("\\.org\\'" . org-mode))
(add-to-list 'auto-mode-alist '("\\.txt\\'" . org-mode))
;; Capture timestamps when TODO state changes
(setq org-log-done t)
;; Make org-mode files indent nicely (pretty view)
(setq org-startup-indented t)
;; Initialise any custom org variables
(if (fboundp 'org-variables) (org-variables))
;; Use org-latex
;;(require 'org-latex)
(use-package org-crypt
:config
(org-crypt-use-before-save-magic)
(setq org-tags-exclude-from-inheritance (quote ("crypt")))
;; Disable auto-save-mode to prevent data being auto-saved in plain text
(setq org-crypt-disable-auto-save t)
;; GPG Key used for encryption (defaults to nil for symmetric encryption)
(setq org-crypt-key (if (boundp 'gpg-key-id) gpg-key-id nil)))
;; Use gnuplot
(use-package gnuplot
:ensure t)
:bind
("C-c a" . org-agenda)
("C-c b" . org-iswitchb)
("C-c l" . org-store-link)
("C-c c" . org-capture)
("M-C-g" . org-plot/gnuplot))
;; ERC IRC Client
;;(require 'erc-nick-notify)
(use-package erc
:init
(setq irc-servers (list))
;; Create individual hash-tables with parameters for each irc server
;; to be connected and add the <SERVER-NAME> to 'irc-servers
;; Example:
;; (setq <SERVER-NAME> (make-hash-table :test 'equal))
;; (puthash "server" "<SERVER-FQDN>" <SERVER-NAME>) [REQUIRED]
;; (puthash "port" 6667 <SERVER-NAME>) [REQUIRED]
;; (puthash "password-prefix" "<PREFIX>" <SERVER-NAME>) [OPTIONAL]
;; (puthash "nick" "<NICK>" <SERVER-NAME>) [OPTIONAL]
;; (puthash "full-name" "<FULL-NAME>" <SERVER-NAME>) [OPTIONAL]
;; (add-to-list 'irc-servers <SERVER-NAME>)
;; Initialise any custom variables
(if (fboundp 'erc-variables) (erc-variables))
:config
;; Check channels
;; (erc-track-mode t)
;; Exclude some types of messages including messages sent by the server
;; when joining a channel, such as the nicklist and topic
(setq erc-track-exclude-types '("NICK" "JOIN" "PART" "QUIT" "MODE"
"301" ; Away notice
"305" ; Return from being away
"306" ; Mark as being away
"324" ; Modes
"329" ; Channel creation date
"332" ; Channel topic notice
"333" ; Who set the channel topic
"353" ; Names notice
"477" ; Channel unsupported modes
))
;; Don't show any of these messages
;; (setq erc-hide-list '("JOIN" "PART" "QUIT" "NICK"))
;; Don't track server buffer
(setq erc-track-exclude-server-buffer t)
;; Don't track some channels/query targets
(setq erc-track-exclude '("*stickychan" "*status"))
;; Show modified channel information after the global-mode-string
(setq erc-track-position-in-mode-line t)
;; Show the count of unseen messages for each channel
(setq erc-track-showcount t)
;; Track query buffers as if they contain the current nick
;; to allow private messages to be treated with urgency
(defadvice
erc-track-find-face
(around erc-track-find-face-promote-query activate)
(if (erc-query-buffer-p)
(setq ad-return-value (intern "erc-current-nick-face"))
ad-do-it))
(defun erc-start-or-switch ()
"Connect to ERC, or switch to last active buffer"
(interactive)
(if (delq nil (mapcar
(lambda (x) (and (erc-server-buffer-p x) x))
(buffer-list))) ;; ERC already active?
(erc-track-switch-buffer 1) ;; yes: switch to last active
(when (y-or-n-p "Start ERC? ") ;; no: maybe start ERC
(if irc-servers
(dolist (irc-server irc-servers)
(when (y-or-n-p (format "Connect to %s?"
(gethash "server" irc-server)))
(erc
:server (gethash "server" irc-server)
:port (gethash "port" irc-server)
:password (if (gethash "password-prefix" irc-server)
(concat
(gethash "password-prefix" irc-server)
(read-passwd (concat
(gethash "server" irc-server)
" password: "))))
:nick (if (gethash "nick" irc-server)
(gethash "nick" irc-server)
(read-string "Nick: "))
:full-name (if (gethash "full-name" irc-server)
(gethash "full-name" irc-server)
"_"))))
(call-interactively 'erc-select)))))
(defun erc-stop ()
"Disconnect from IRC servers."
(interactive)
(dolist (buffer (erc-buffer-list))
(when (erc-server-buffer-p buffer)
(set-buffer buffer)
(erc-quit-server "Quit")
(kill-buffer buffer))))
;; Improve scrolling in channel buffers
(add-to-list 'erc-mode-hook
(lambda ()
(set (make-local-variable 'scroll-conservatively) 100)))
;; Kill buffers for channels after /part
(setq erc-kill-buffer-on-part t)
;; Kill buffers for private queries after quitting the server
(setq erc-kill-queries-on-quit t)
;; Kill buffers for server messages after quitting the server
(setq erc-kill-server-buffer-on-quit t)
:bind
("C-c e" . erc-start-or-switch)
("C-c E" . erc-stop))
;; Enable google-this
;; https://github.com/Malabarba/emacs-google-this
(use-package google-this
:ensure t
:init
(google-this-mode t))
;;
;; Programming
;;
(use-package elpy
:ensure t
:init
(elpy-enable))
(use-package yaml-mode
:ensure t)
(use-package json-mode
:ensure t)
;;
;; Emacs auto-configured items from: M-x customize (DO NOT TOUCH!!!)
;;
(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.
'(evil-want-C-w-in-emacs-state 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.
'(error ((t (:foreground "Red" :weight bold))))
'(hl-line ((t (:background "gray10"))))
'(linum ((t (:inherit shadow :background "grey10"))))
'(trailing-whitespace ((t (:background "grey20"))))
)