-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathinit.el
1995 lines (1669 loc) · 72.8 KB
/
init.el
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
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
;;; -*- lexical-binding: t -*-
(defun tangle-init ()
"If the current buffer is 'init.org' the code-blocks are
tangled, and the tangled file is compiled."
(when (equal (buffer-file-name)
(expand-file-name (concat user-emacs-directory "init.org")))
;; Avoid running hooks when tangling.
(let ((prog-mode-hook nil))
(org-babel-tangle)
(byte-compile-file (concat user-emacs-directory "init.el")))))
(add-hook 'after-save-hook 'tangle-init)
(add-hook
'after-init-hook
(lambda ()
(let ((private-file (concat user-emacs-directory "private.el")))
(when (file-exists-p private-file)
(load-file private-file))
(server-start))))
;(lexical-let ((old-gc-treshold gc-cons-threshold))
; (setq gc-cons-threshold most-positive-fixnum)
; (add-hook 'after-init-hook
; (lambda () (setq gc-cons-threshold old-gc-treshold))))
(require 'cl)
(require 'package)
(package-initialize)
(setq package-archives
'(
("gnu" . "https://elpa.gnu.org/packages/")
("MELPA Stable" . "https://stable.melpa.org/packages/")
("MELPA" . "https://melpa.org/packages/")
)
package-archive-priorities
'(("MELPA Stable" . 10)
("gnu" . 5)
("MELPA" . 0)
))
(let* ((package--builtins nil)
(packages
'(auto-compile ; automatically compile Emacs Lisp libraries
;; cider ; Clojure Interactive Development Environment
;; clj-refactor ; Commands for refactoring Clojure code
;; company ; Modular text completion framework
;; company-coq ; A collection of extensions PG's Coq mode
define-word ; display the definition of word at point
diminish ; Diminished modes from modeline
doom-themes ; An opinionated pack of modern color-themes
erlang ; Erlang major mode
;; expand-region ; Increase selected region by semantic units
focus ; Dim color of text in surrounding sections
git-gutter-fringe ; Fringe version of git-gutter.el
golden-ratio ; Automatic resizing windows to golden ratio
haskell-mode ; A Haskell editing mode
helm ; Incremental and narrowing framework
helm-ag ; the silver searcher with helm interface
;; helm-company ; Helm interface for company-mode
helm-dash ; Offline documentation using Dash docsets.
helm-projectile ; Helm integration for Projectile
helm-swoop ; Efficiently hopping squeezed lines
jedi ; Python auto-completion for Emacs
js2-mode ; Improved JavaScript editing mode
leuven-theme ; djl added
magit ; control Git from Emacs
markdown-mode ; Emacs Major mode for Markdown-formatted files
;; maude-mode ; Emacs mode for the programming language Maude
;; minizinc-mode ; Major mode for MiniZinc code
multiple-cursors ; Multiple cursors for Emacs
;; olivetti ; Minor mode for a nice writing environment
org ; Outline-based notes management and organizer
org-bullets ; Show bullets in org-mode as UTF-8 characters
org-ref ; citations bibliographies in org-mode
org-super-agenda ; djl: suggested by Reed
paredit ; minor mode for editing parentheses
pdf-tools ; Emacs support library for PDF files
plantuml-mode ; djl added
projectile ; Manage and navigate projects in Emacs easily
;; proof-general ; A generic Emacs interface for proof assistants
racket-mode ; Major mode for Racket language
real-auto-save ; djl added
;; slime ; Superior Lisp Interaction Mode for Emacs
tango-plus-theme ; djl added
try ; Try out Emacs packages
which-key))) ; Display available keybindings in popup
(when (memq window-system '(mac ns))
(push 'exec-path-from-shell packages)
(push 'reveal-in-osx-finder packages))
(let ((packages (remove-if 'package-installed-p packages)))
(when packages
;; Install uninstalled packages
(package-refresh-contents)
(mapc 'package-install packages))))
(when (memq window-system '(mac ns))
(setq ns-pop-up-frames nil
mac-option-modifier nil
mac-command-modifier 'meta
select-enable-clipboard t)
(exec-path-from-shell-initialize)
(when (fboundp 'mac-auto-operator-composition-mode)
(mac-auto-operator-composition-mode 1)))
(setq auto-revert-interval 1 ; Refresh buffers fast
custom-file (make-temp-file "") ; Discard customization's
default-input-method "TeX" ; Use TeX when toggling input method
echo-keystrokes 0.1 ; Show keystrokes asap
inhibit-startup-screen t ; No splash screen please
initial-scratch-message nil ; Clean scratch buffer
recentf-max-saved-items 100 ; Show more recent files
;; ring-bell-function 'ignore ; Quiet
scroll-margin 1 ; Space between cursor and top/bottom
sentence-end-double-space nil) ; No double space
;; Some mac-bindings interfere with Emacs bindings.
(when (boundp 'mac-pass-command-to-system)
(setq mac-pass-command-to-system nil))
(setq-default tab-width 4 ; Smaller tabs
fill-column 79 ; Maximum line width
truncate-lines nil ; Don't fold lines...
truncate-partial-width-windows nil; ... even in narrow windows
indent-tabs-mode nil ; Use spaces instead of tabs
split-width-threshold 160 ; Split verticly by default
split-height-threshold nil ; Split verticly by default
auto-fill-function 'do-auto-fill) ; Auto-fill-mode everywhere
(let ((default-directory (concat user-emacs-directory "site-lisp/")))
(when (file-exists-p default-directory)
(setq load-path
(append
(let ((load-path (copy-sequence load-path)))
(normal-top-level-add-subdirs-to-load-path)) load-path))))
; (fset 'yes-or-no-p 'y-or-n-p)
(defvar emacs-autosave-directory
(concat user-emacs-directory "autosaves/")
"This variable dictates where to put auto saves. It is set to a
directory called autosaves located wherever your .emacs.d/ is
located.")
;; Sets all files to be backed up and auto saved in a single directory.
(setq backup-directory-alist
`((".*" . ,emacs-autosave-directory))
auto-save-file-name-transforms
`((".*" ,emacs-autosave-directory t)))
(set-language-environment "UTF-8")
(put 'narrow-to-region 'disabled nil)
(add-hook 'doc-view-mode-hook 'auto-revert-mode)
(dolist (mode
'(tool-bar-mode ; No toolbars, more room for text
menu-bar-mode ; No menubars either
;; scroll-bar-mode ; No scroll bars either
blink-cursor-mode)
) ; The blinking cursor gets old
(funcall mode 0))
(dolist (mode
'(abbrev-mode ; E.g. sopl -> System.out.println
column-number-mode ; Show column number in mode line
delete-selection-mode ; Replace selected text
dirtrack-mode ; directory tracking in *shell*
;;djl global-company-mode ; Auto-completion everywhere
global-git-gutter-mode ; Show changes latest commit
global-prettify-symbols-mode ; Greek letters should look greek
projectile-mode ; Manage and navigate projects
recentf-mode ; Recently opened files
show-paren-mode ; Highlight matching parentheses
which-key-mode)) ; Available keybindings in popup
(funcall mode 1))
(when (version< emacs-version "24.4")
(eval-after-load 'auto-compile
'((auto-compile-on-save-mode 1)))) ; compile .el files on save
(defun set-git-gutter-colors ()
"Set the colors to use for changes (per git) in the gutter"
(dolist (p '((git-gutter:added . "#0c0")
(git-gutter:deleted . "#c00")
(git-gutter:modified . "#c0c")))
(set-face-foreground (car p) (cdr p))
(set-face-background (car p) (cdr p))))
(if
;; (load-theme 'light-blue t)
(load-theme 'tango-plus t)
;; (load-theme 'whiteboard t)
;; (load-theme 'leuven t)
;; (load-theme 'doom-one-light t)
(set-git-gutter-colors))
(defun cycle-themes ()
"Returns a function that lets you cycle your themes."
(lexical-let
((themes
'#1=(light-blue tango-plus leuven whiteboard doom-one-light doom-one . #1#)))
(lambda ()
(interactive)
;; Rotates the thme cycle and changes the current theme.
(load-theme (car (setq themes (cdr themes))) t)
(message (concat "Switched to " (symbol-name (car themes)))))))
(cond ((member "Hasklig" (font-family-list))
(set-face-attribute 'default nil :font "Hasklig-14"))
((member "Inconsolata" (font-family-list))
(set-face-attribute 'default nil :font "Inconsolata-14")))
(defmacro safe-diminish (file mode &optional new-name)
`(with-eval-after-load ,file
(diminish ,mode ,new-name)))
(diminish 'auto-fill-function)
(safe-diminish "eldoc" 'eldoc-mode)
(safe-diminish "flyspell" 'flyspell-mode)
(safe-diminish "helm-mode" 'helm-mode)
(safe-diminish "projectile" 'projectile-mode)
(safe-diminish "paredit" 'paredit-mode "()")
(with-eval-after-load 'git-gutter-fringe
(set-git-gutter-colors))
(setq-default prettify-symbols-alist '(("lambda" . ?λ)
("delta" . ?Δ)
("gamma" . ?Γ)
("phi" . ?φ)
("psi" . ?ψ)))
(add-to-list 'auto-mode-alist '("\\.pdf\\'" . pdf-tools-install))
(add-hook 'pdf-view-mode-hook
(lambda () (setq mode-line-format nil)))
;; (setq company-idle-delay 0
;; company-echo-delay 0
;; company-dabbrev-downcase nil
;; company-minimum-prefix-length 2
;; company-selection-wrap-around t
;; company-transformers '(company-sort-by-occurrence
;; company-sort-by-backend-importance))
(require 'helm)
(require 'helm-config)
(setq helm-split-window-in-side-p t
helm-M-x-fuzzy-match t
helm-buffers-fuzzy-matching t
helm-recentf-fuzzy-match t
helm-move-to-line-cycle-in-source t
projectile-completion-system 'helm
helm-mini-default-sources '(helm-source-buffers-list
helm-source-recentf
helm-source-bookmarks
helm-source-buffer-not-found))
(when (executable-find "ack")
(setq helm-grep-default-command
"ack -Hn --no-group --no-color %e %p %f"
helm-grep-default-recurse-command
"ack -H --no-group --no-color %e %p %f"))
(set-face-attribute 'helm-selection nil :background "cyan")
(helm-mode 1)
(helm-projectile-on)
(helm-adaptive-mode 1)
(setq helm-dash-browser-func 'eww)
(add-hook 'emacs-lisp-mode-hook
(lambda () (setq-local helm-dash-docsets '("Emacs Lisp"))))
(add-hook 'erlang-mode-hook
(lambda () (setq-local helm-dash-docsets '("Erlang"))))
(add-hook 'java-mode-hook
(lambda () (setq-local helm-dash-docsets '("Java"))))
(add-hook 'haskell-mode-hook
(lambda () (setq-local helm-dash-docsets '("Haskell"))))
(add-hook 'clojure-mode-hook
(lambda () (setq-local helm-dash-docsets '("Clojure"))))
(add-hook 'text-mode-hook 'turn-on-flyspell)
;;djl (add-hook 'prog-mode-hook 'flyspell-prog-mode)
(defun cycle-languages ()
"Changes the ispell dictionary to the first element in
ISPELL-LANGUAGES, and returns an interactive function that cycles
the languages in ISPELL-LANGUAGES when invoked."
(lexical-let ((ispell-languages '#1=("american" "norsk" . #1#)))
(ispell-change-dictionary (car ispell-languages))
(lambda ()
(interactive)
;; Rotates the languages cycle and changes the ispell dictionary.
(ispell-change-dictionary
(car (setq ispell-languages (cdr ispell-languages)))))))
(defadvice turn-on-flyspell (before check nil activate)
"Turns on flyspell only if a spell-checking tool is installed."
(when (executable-find ispell-program-name)
(local-set-key (kbd "C-c l") (cycle-languages))))
;; (defadvice flyspell-prog-mode (before check nil activate)
;; "Turns on flyspell only if a spell-checking tool is installed."
;; (when (executable-find ispell-program-name)
;; (local-set-key (kbd "C-c l") (cycle-languages))))
(setq org-src-fontify-natively t
org-src-tab-acts-natively t
org-confirm-babel-evaluate nil
org-edit-src-content-indentation 0)
(with-eval-after-load 'org
(setcar (nthcdr 2 org-emphasis-regexp-components) " \t\n,")
(custom-set-variables `(org-emphasis-alist ',org-emphasis-alist)))
(add-hook 'org-mode-hook (lambda () (org-bullets-mode 1)))
(defun cycle-spacing-delete-newlines ()
"Removes whitespace before and after the point."
(interactive)
(if (version< emacs-version "24.4")
(just-one-space -1)
(cycle-spacing -1)))
(defun jump-to-symbol-internal (&optional backwardp)
"Jumps to the next symbol near the point if such a symbol
exists. If BACKWARDP is non-nil it jumps backward."
(let* ((point (point))
(bounds (find-tag-default-bounds))
(beg (car bounds)) (end (cdr bounds))
(str (isearch-symbol-regexp (find-tag-default)))
(search (if backwardp 'search-backward-regexp
'search-forward-regexp)))
(goto-char (if backwardp beg end))
(funcall search str nil t)
(cond ((<= beg (point) end) (goto-char point))
(backwardp (forward-char (- point beg)))
(t (backward-char (- end point))))))
(defun jump-to-previous-like-this ()
"Jumps to the previous occurrence of the symbol at point."
(interactive)
(jump-to-symbol-internal t))
(defun jump-to-next-like-this ()
"Jumps to the next occurrence of the symbol at point."
(interactive)
(jump-to-symbol-internal))
(defun kill-this-buffer-unless-scratch ()
"Works like `kill-this-buffer' unless the current buffer is the
*scratch* buffer. In witch case the buffer content is deleted and
the buffer is buried."
(interactive)
(if (not (string= (buffer-name) "*scratch*"))
(kill-this-buffer)
(delete-region (point-min) (point-max))
(switch-to-buffer (other-buffer))
(bury-buffer "*scratch*")))
(defun duplicate-thing (comment)
"Duplicates the current line, or the region if active. If an argument is
given, the duplicated region will be commented out."
(interactive "P")
(save-excursion
(let ((start (if (region-active-p) (region-beginning) (point-at-bol)))
(end (if (region-active-p) (region-end) (point-at-eol)))
(fill-column most-positive-fixnum))
(goto-char end)
(unless (region-active-p)
(newline))
(insert (buffer-substring start end))
(when comment (comment-region start end)))))
(defun tidy ()
"Ident, untabify and unwhitespacify current buffer, or region if active."
(interactive)
(let ((beg (if (region-active-p) (region-beginning) (point-min)))
(end (if (region-active-p) (region-end) (point-max))))
(indent-region beg end)
(whitespace-cleanup)
(untabify beg (if (< end (point-max)) end (point-max)))))
(defun org-sync-pdf ()
(interactive)
(let ((headline (nth 4 (org-heading-components)))
(pdf (concat (file-name-base (buffer-name)) ".pdf")))
(when (file-exists-p pdf)
(find-file-other-window pdf)
(pdf-links-action-perform
(cl-find headline (pdf-info-outline pdf)
:key (lambda (alist) (cdr (assoc 'title alist)))
:test 'string-equal)))))
(defadvice eval-last-sexp (around replace-sexp (arg) activate)
"Replace sexp when called with a prefix argument."
(if arg
(let ((pos (point)))
ad-do-it
(goto-char pos)
(backward-kill-sexp)
(forward-sexp))
ad-do-it))
(defadvice load-theme
(before disable-before-load (theme &optional no-confirm no-enable) activate)
(mapc 'disable-theme custom-enabled-themes))
(lexical-let* ((default (face-attribute 'default :height))
(size default))
(defun global-scale-default ()
(interactive)
(setq size default)
(global-scale-internal size))
(defun global-scale-up ()
(interactive)
(global-scale-internal (incf size 20)))
(defun global-scale-down ()
(interactive)
(global-scale-internal (decf size 20)))
(defun global-scale-internal (arg)
(set-face-attribute 'default (selected-frame) :height arg)
(set-temporary-overlay-map
(let ((map (make-sparse-keymap)))
(define-key map (kbd "C-=") 'global-scale-up)
(define-key map (kbd "C-+") 'global-scale-up)
(define-key map (kbd "C--") 'global-scale-down)
(define-key map (kbd "C-0") 'global-scale-default) map))))
(add-hook 'compilation-filter-hook 'comint-truncate-buffer)
(lexical-let ((last-shell ""))
(defun toggle-shell ()
(interactive)
(cond ((string-match-p "^\\*shell<[1-9][0-9]*>\\*$" (buffer-name))
(goto-non-shell-buffer))
((get-buffer last-shell) (switch-to-buffer last-shell))
(t (shell (setq last-shell "*shell<1>*")))))
(defun switch-shell (n)
(let ((buffer-name (format "*shell<%d>*" n)))
(setq last-shell buffer-name)
(cond ((get-buffer buffer-name)
(switch-to-buffer buffer-name))
(t (shell buffer-name)
(rename-buffer buffer-name)))))
(defun goto-non-shell-buffer ()
(let* ((r "^\\*shell<[1-9][0-9]*>\\*$")
(shell-buffer-p (lambda (b) (string-match-p r (buffer-name b))))
(non-shells (cl-remove-if shell-buffer-p (buffer-list))))
(when non-shells
(switch-to-buffer (first non-shells))))))
;;djl (defadvice shell (after kill-with-no-query nil activate)
;;djl (set-process-query-on-exit-flag (get-buffer-process ad-return-value) nil))
(defun clear-comint ()
"Runs `comint-truncate-buffer' with the
`comint-buffer-maximum-size' set to zero."
(interactive)
(let ((comint-buffer-maximum-size 0))
(comint-truncate-buffer)))
(dolist (mode '(cider-repl-mode
clojure-mode
ielm-mode
racket-mode
racket-repl-mode
slime-repl-mode
lisp-mode
emacs-lisp-mode
lisp-interaction-mode
scheme-mode))
;; add paredit-mode to all mode-hooks
(add-hook (intern (concat (symbol-name mode) "-hook")) 'paredit-mode))
(add-hook 'emacs-lisp-mode-hook 'turn-on-eldoc-mode)
(add-hook 'lisp-interaction-mode-hook 'turn-on-eldoc-mode)
(defun activate-slime-helper ()
(when (file-exists-p "~/.quicklisp/slime-helper.el")
(load (expand-file-name "~/.quicklisp/slime-helper.el"))
(define-key slime-repl-mode-map (kbd "C-l")
'slime-repl-clear-buffer))
(remove-hook 'common-lisp-mode-hook #'activate-slime-helper))
(add-hook 'common-lisp-mode-hook #'activate-slime-helper)
(setq inferior-lisp-program "sbcl")
(setq lisp-loop-forms-indentation 6
lisp-simple-loop-indentation 2
lisp-loop-keyword-indentation 6)
(setq python-shell-interpreter "python3")
(add-hook 'python-mode-hook
(lambda () (setq forward-sexp-function nil)))
(defun c-setup ()
(local-set-key (kbd "C-c C-c") 'compile))
(add-hook 'c-mode-hook 'c-setup)
(define-abbrev-table 'java-mode-abbrev-table
'(("psv" "public static void main(String[] args) {" nil 0)
("sopl" "System.out.println" nil 0)
("sop" "System.out.printf" nil 0)))
(defun java-setup ()
(abbrev-mode t)
(setq-local compile-command (concat "javac " (buffer-name))))
(add-hook 'java-mode-hook 'java-setup)
(defun asm-setup ()
(setq comment-start "#")
(local-set-key (kbd "C-c C-c") 'compile))
(add-hook 'asm-mode-hook 'asm-setup)
(add-to-list 'auto-mode-alist '("\\.tex\\'" . latex-mode))
(add-hook 'LaTeX-mode-hook
(lambda ()
(add-hook 'hack-local-variables-hook
(lambda ()
(setq-local compile-command
(concat "latexmk -pdf -pvc "
(if (eq TeX-master t)
(file-name-base (buffer-name))
TeX-master))))
t t)))
(setq-default bibtex-dialect 'biblatex)
(eval-after-load 'org
'(add-to-list 'org-latex-packages-alist '("" "minted")))
(setq org-latex-listings 'minted)
(eval-after-load 'tex-mode
'(setcar (cdr (cddaar tex-compile-commands)) " -shell-escape "))
(eval-after-load 'ox-latex
'(setq org-latex-pdf-process
'("latexmk -pdflatex='pdflatex -shell-escape -interaction nonstopmode' -pdf -f %f")))
(eval-after-load "ox-latex"
'(progn
(add-to-list 'org-latex-classes
'("ifimaster"
"\\documentclass{ifimaster}
[DEFAULT-PACKAGES]
[PACKAGES]
[EXTRA]
\\usepackage{babel,csquotes,ifimasterforside,url,varioref}"
("\\chapter{%s}" . "\\chapter*{%s}")
("\\section{%s}" . "\\section*{%s}")
("\\subsection{%s}" . "\\subsection*{%s}")
("\\subsubsection{%s}" . "\\subsubsection*{%s}")
("\\paragraph{%s}" . "\\paragraph*{%s}")
("\\subparagraph{%s}" . "\\subparagraph*{%s}")))
(add-to-list 'org-latex-classes
'("easychair" "\\documentclass{easychair}"
("\\section{%s}" . "\\section*{%s}")
("\\subsection{%s}" . "\\subsection*{%s}")
("\\subsubsection{%s}" . "\\subsubsection*{%s}")
("\\paragraph{%s}" . "\\paragraph*{%s}")
("\\subparagraph{%s}" . "\\subparagraph*{%s}")))
(custom-set-variables '(org-export-allow-bind-keywords t))))
(require 'org)
(add-to-list 'org-file-apps '("\\.pdf\\'" . emacs))
(add-to-list 'auto-mode-alist '("\\.md\\'" . markdown-mode))
(defun insert-markdown-inline-math-block ()
"Inserts an empty math-block if no region is active, otherwise wrap a
math-block around the region."
(interactive)
(let* ((beg (region-beginning))
(end (region-end))
(body (if (region-active-p) (buffer-substring beg end) "")))
(when (region-active-p)
(delete-region beg end))
(insert (concat "$math$ " body " $/math$"))
(search-backward " $/math$")))
(add-hook 'markdown-mode-hook
(lambda ()
(auto-fill-mode 0)
(visual-line-mode 1)
(ispell-change-dictionary "norsk")
(local-set-key (kbd "C-c b") 'insert-markdown-inline-math-block)) t)
(add-hook 'haskell-mode-hook 'interactive-haskell-mode)
(add-hook 'haskell-mode-hook 'turn-on-haskell-doc-mode)
(add-hook 'haskell-mode-hook 'turn-on-haskell-indent)
(setq haskell-process-args-ghci
'("-ferror-spans" "-fshow-loaded-modules"))
(setq haskell-process-args-cabal-repl
'("--ghc-options=-ferror-spans -fshow-loaded-modules"))
(setq haskell-process-args-stack-ghci
'("--ghci-options=-ferror-spans -fshow-loaded-modules"
"--no-build" "--no-load"))
(setq haskell-process-args-cabal-new-repl
'("--ghc-options=-ferror-spans -fshow-loaded-modules"))
(add-hook 'maude-mode-hook
(lambda ()
(setq-local comment-start "---")))
(with-eval-after-load 'maude-mode
(add-to-list 'maude-command-options "-no-wrap"))
(add-to-list 'auto-mode-alist '("\\.mzn\\'" . minizinc-mode))
(defun minizinc-setup ()
(let ((command (concat "minizinc " (buffer-file-name) " "))
(f (concat (file-name-base (buffer-file-name)) ".dzn")))
(local-set-key (kbd "C-c C-c") 'recompile)
(setq-local compile-command (concat command (if (file-exists-p f) f "")))))
(add-hook 'minizinc-mode-hook 'minizinc-setup)
;; (add-hook 'coq-mode-hook #'company-coq-mode)
(defvar custom-bindings-map (make-keymap)
"A keymap for custom bindings.")
(define-key custom-bindings-map (kbd "C-c D") 'define-word-at-point)
(define-key custom-bindings-map (kbd "C->") 'er/expand-region)
(define-key custom-bindings-map (kbd "C-<") 'er/contract-region)
; (define-key custom-bindings-map (kbd "C-c e") 'mc/edit-lines)
; (define-key custom-bindings-map (kbd "C-c a") 'mc/mark-all-like-this)
; (define-key custom-bindings-map (kbd "C-c n") 'mc/mark-next-like-this)
(define-key custom-bindings-map (kbd "C-c m") 'magit-status)
;; (define-key company-active-map (kbd "C-d") 'company-show-doc-buffer)
;; (define-key company-active-map (kbd "C-n") 'company-select-next)
;; (define-key company-active-map (kbd "C-p") 'company-select-previous)
;; (define-key company-active-map (kbd "<tab>") 'company-complete)
;; (define-key company-mode-map (kbd "C-:") 'helm-company)
;; (define-key company-active-map (kbd "C-:") 'helm-company)
(define-key helm-map (kbd "<tab>") 'helm-execute-persistent-action)
(define-key helm-map (kbd "C-i") 'helm-execute-persistent-action)
(define-key helm-map (kbd "C-z") 'helm-select-action)
(define-key helm-map (kbd "<left>") 'helm-previous-source)
(define-key helm-map (kbd "<right>") 'helm-next-source)
(define-key custom-bindings-map (kbd "C-c h") 'helm-command-prefix)
(define-key custom-bindings-map (kbd "M-x") 'helm-M-x)
(define-key custom-bindings-map (kbd "M-y") 'helm-show-kill-ring)
(define-key custom-bindings-map (kbd "C-x b") 'helm-mini)
(define-key custom-bindings-map (kbd "C-x C-f") 'helm-find-files)
(define-key custom-bindings-map (kbd "C-c h d") 'helm-dash-at-point)
(define-key custom-bindings-map (kbd "C-c h o") 'helm-occur)
(define-key custom-bindings-map (kbd "C-c h g") 'helm-google-suggest)
(define-key custom-bindings-map (kbd "M-i") 'helm-swoop)
(define-key custom-bindings-map (kbd "M-I") 'helm-multi-swoop-all)
(define-key projectile-mode-map (kbd "C-c p") 'projectile-command-map)
(with-eval-after-load 'cider
(define-key cider-repl-mode-map (kbd "C-l") 'cider-repl-clear-buffer))
(define-key custom-bindings-map (kbd "M-u") 'upcase-dwim)
(define-key custom-bindings-map (kbd "M-c") 'capitalize-dwim)
(define-key custom-bindings-map (kbd "M-l") 'downcase-dwim)
(define-key custom-bindings-map (kbd "M-]") 'other-frame)
(define-key custom-bindings-map (kbd "C-j") 'newline-and-indent)
(define-key custom-bindings-map (kbd "C-c s") 'ispell-word)
;; (define-key comint-mode-map (kbd "C-l") 'clear-comint)
(define-key global-map (kbd "M-p") 'jump-to-previous-like-this)
(define-key global-map (kbd "M-n") 'jump-to-next-like-this)
(define-key custom-bindings-map (kbd "M-,") 'jump-to-previous-like-this)
(define-key custom-bindings-map (kbd "M-.") 'jump-to-next-like-this)
(define-key custom-bindings-map (kbd "C-c .") (cycle-themes))
(define-key custom-bindings-map (kbd "C-x k") 'kill-this-buffer-unless-scratch)
(define-key custom-bindings-map (kbd "C-c C-0") 'global-scale-default)
(define-key custom-bindings-map (kbd "C-c C-=") 'global-scale-up)
(define-key custom-bindings-map (kbd "C-c C-+") 'global-scale-up)
(define-key custom-bindings-map (kbd "C-c C--") 'global-scale-down)
(define-key custom-bindings-map (kbd "C-c j") 'cycle-spacing-delete-newlines)
(define-key custom-bindings-map (kbd "C-c d") 'duplicate-thing)
(define-key custom-bindings-map (kbd "<C-tab>") 'tidy)
(define-key custom-bindings-map (kbd "M-`") 'toggle-shell)
(dolist (n (number-sequence 1 9))
(global-set-key (kbd (concat "M-" (int-to-string n)))
(lambda () (interactive) (switch-shell n))))
(define-key custom-bindings-map (kbd "C-c C-q")
'(lambda ()
(interactive)
(focus-mode 1)
(focus-read-only-mode 1)))
(with-eval-after-load 'org
(define-key org-mode-map (kbd "C-'") 'org-sync-pdf))
(define-minor-mode custom-bindings-mode
"A mode that activates custom-bindings."
t nil custom-bindings-map)
; (setq emacs-local-directory "/home/derrell/ME/xemacs-lib/site-lisp")
(setenv "SHELL" "/bin/csh")
; (nconc load-path (list emacs-local-directory))
; Use js2 mode for JavaScript files
;
; TO RETRIEVE THE LATEST js2-mode:
; M-x package-install RET js2-mode RET
;
; which installs it in ~/.emacs.d
(add-to-list 'auto-mode-alist '("\\.js$" . js2-mode))
(load "hexl") ; hex editor for binary files
(require 'linum)
; load parenthesis matching stuff
(load "paren")
; (load "kb-generic")
; Display time in mode line
(display-time)
; Reset modeline-format to have time and mail flag first on mode line
(setq-default modeline-format '(" %* " global-mode-string " %n " mode-line-buffer-identification " " (-3 . "%p") " %f %[(" mode-name mode-line-process ")%] %-"))
; Only display 24-hour time
(setq display-time-form-list (list '24-hours 'minutes))
(put 'eval-expression 'disabled nil)
(put 'narrow-to-region 'disabled nil)
(put 'upcase-region 'disabled t)
(defun command-history-hooker ()
(define-key command-history-map "n" 'next-line)
(define-key command-history-map "p" 'previous-line))
(defun dired-mode-hooker ()
(define-key dired-mode-map "!" 'dired-shell-command)
(define-key dired-mode-map "c" 'dired-do-copy)
(define-key dired-mode-map "r" 'dired-do-rename)
(setq dired-mode-hook nil)) ; All fixes are global
(defun edit-picture-hooker ()
(setq picture-tab-chars "!_~-|") ; Added some useful characters here
(keybind-edit-picture-hooker)
(setq edit-picture-hook nil)) ; All fixes are global
; Underscores and hash marks in running text are usually in C tokens
(defun nroff-mode-hooker ()
(modify-syntax-entry ?_ "w")
(modify-syntax-entry ?# "w"))
(defun c-mode-hooker ()
(define-key c-mode-map "\M-{" 'insert-braces)
(define-key c-mode-map "\M-\C-h" 'backward-kill-word)
(if (string-equal
(substring (buffer-file-name) 0 25)
"/var/home/derrell/agranat")
(c-set-style "virata")
(c-set-style "Derrell-C")))
(defun c++-mode-hooker ()
(define-key c++-mode-map "\M-{" 'insert-braces)
(c-set-style "Derrell-C"))
(defun js-mode-hooker ()
;;; js2-mode key bindings
(auto-fill-mode 0) ; no auto-fill mode in shell mode
(define-key js2-mode-map "\M-{"
(lambda (arg)
(interactive "P")
(progn
(insert ?\{)
(js2-indent-line)
(save-excursion
(newline-and-indent)
(insert ?\})
(js2-indent-line))
(newline-and-indent))))
(setq Local-map-js2 (make-keymap))
(define-key js2-mode-map "\C-q" Local-map-js2)
(define-key Local-map-js2 "\C-F" '(lambda (arg)
(interactive "P")
(if (and arg (integerp arg))
(c-forward-function arg)
(c-forward-function 4))))
(define-key Local-map-js2 "\C-B" '(lambda (arg)
(interactive "P")
(if (and arg (integerp arg))
(c-backward-function arg)
(c-backward-function 4)))))
(defun java-mode-hooker ()
(c-set-style "java")
(setq c-basic-offset 2)
(c-set-offset `substatement-open 0)
(define-key java-mode-map "\M-{" 'insert-braces)
(define-key java-mode-map "\M-\C-h" 'backward-kill-word))
(defun text-mode-hooker ()
(if (or (equal (buffer-name) "makefile")
(equal (buffer-name) "Makefile"))
nil ; don't turn on FILL if its a makefile.
(turn-on-auto-fill)))
(defun find-file-hooker ()
(kill-local-variable 'case-fold-search))
(defun blink-paren-hooker ()
"If cursor is already on a matching right delimiter,
don't insert another one. Blink the match; move the cursor forward."
(if (looking-at (char-to-string last-input-char))
(if insert-mode (delete-char 1)))
(blink-matching-open))
(defun lisp-interaction-mode-hooker ()
(keybind-lisp-interaction-mode-hooker))
(defun shell-mode-hooker ()
(auto-fill-mode 0) ; no auto-fill mode in shell mode
(setq truncate-lines nil) ; wrap, don't truncate
(define-key shell-mode-map "\t" 'comint-dynamic-complete)
(define-key shell-mode-map "\C-Ch" 'comint-display-command-history)
(kb-generic-shell-mode-hooker)
(keybind-shell-mode-hooker))
(defun shell-selected-hooker ()
(company-mode 0) ; added for Lars' stuff
(setq modeline-buffer-identification
'("%13b") modeline-format '("" global-mode-string
" %n "
modeline-buffer-identification "%p %[("
mode-name mode-line-process ")%] "
" %-")))
;;; New emacs version 19 stuff
;; choose syntax display type from:
;; "color", "font", "none"
(defvar syntax-display-type "color")
;; find out who is running this
(setq user (getenv "USER"))
;; Determine default fill-column dynamically
(setq-default default-fill-column (- (frame-width) 2))
;;; leave regions active always (without highlighting)
;(setq zmacs-regions nil)
;; For Scott Lawrence... don't insert tabs
(setq-default indent-tabs-mode nil)
;; add the host name to the frame title
;;(setq frame-title-format (concat "{" (exec-to-string "hostname -s | tr -d \\\\012") "} %S: %b"))
;;; cc-mode (and c-mode) stuff
(c-add-style
"Derrell-C"
'((c-basic-offset . 4)
(c-hanging-comment-ender-p . nil)
(c-offsets-alist . (
(defun-block-intro . +)
(substatement-open . 0)
))))
(c-add-style
"qooxdoo"
'((c-basic-offset . 2)
(c-hanging-comment-ender-p . nil)
(c-offsets-alist . (
(defun-block-intro . +)
(class-close . -)
(substatement-open . 0)
))))
(c-add-style
"derrell-java"
'((c-basic-offset . 2)
(c-comment-only-line-offset 0 . 0)
(c-hanging-braces-alist
(substatement-open before after)
(arglist-cont-nonempty))
(c-offsets-alist
(defun-block-intro . -)
(block-intro . +)
(substatement-open . 0)
(inline-open . 0)
(statement-block-intro . 0)
(knr-argdecl-intro . 5)
(substatement-label . 0)
(label . 0)
(statement-case-open . +)
(statement-cont . +)
(arglist-intro . c-lineup-arglist-intro-after-paren)
(arglist-close . c-lineup-arglist)
(brace-list-open . +)
(topmost-intro-cont first c-lineup-topmost-intro-cont c-lineup-gnu-DEFUN-intro-cont))
(c-special-indent-hook . c-gnu-impose-minimum)
(c-block-comment-prefix . "")))
;; (setq
;; c-macro-preprocessor "/usr/libexec/cpp"
;; c-macro-prompt-flag t
;; )
;;; End of new stuff for version 19
(setq
;; Automatic backup parameters
version-control t
delete-old-versions t
kept-old-versions 0 ; formerly 1
kept-new-versions 2
auto-save-interval 100
;; Hooks
text-mode-hook 'text-mode-hooker
nroff-mode-hook 'nroff-mode-hooker
blink-paren-function 'blink-matching-open
asn-mode-hook 'asn-mode-hooker
find-file-hooks (list 'find-file-hooker)
mail-mode-hook 'mail-mode-hooker
mail-setup-hook 'mail-setup-hooker
shell-mode-hook (list 'shell-mode-hooker)
shell-selected-hook 'shell-selected-hooker
c-mode-hook 'c-mode-hooker
c++-mode-hook 'c++-mode-hooker
js2-mode-hook 'js-mode-hooker
java-mode-hook 'java-mode-hooker
dired-mode-hook 'dired-mode-hooker
command-history-hook 'command-history-hooker
;; lisp-interaction-mode-hook 'lisp-interaction-mode-hooker
;; Loose ends
display-time-interval 10
default-major-mode 'text-mode
require-final-newline t
scroll-step 1
window-min-height 1 ; Enough to watch compilation
inhibit-startup-message t ; Start with shell window
default-fill-column 70
term-file-prefix nil
keybind-term-file-prefix "term/kb-"
dired-listing-switches "-al"
display-time-day-and-date t
completion-ignored-extensions '(
".o"
".obj"
".elc"
"~"
".ln"
".class")
;; C-mode stuff especially automatic indenting of C programs
c-default-variable-column 16
;; Misc. make stuff
compile-command "make"
;; Shell stuff
explicit-shell-file-name "/bin/csh"
shell-file-name "/bin/csh"
shell-cd-regexp "cd"
shell-popd-regexp "popd\\|\-"
shell-pushd-regexp "pd\\|pushd\\|\="
shell-prompt-pattern "^.*---> \\|(.*-gdb) "
;; Don't invert foreground/background to get a password