-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.el
executable file
·82 lines (75 loc) · 3.05 KB
/
main.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
;; Set up elisp|.emacs.d path loading
(load-file (concat drm-dot-emacs-customisation-path "misc/path.el"))
;; Additional General Lisp
(let ((d default-directory))
(cd drm-dot-emacs-customisation-path)
(normal-top-level-add-subdirs-to-load-path)
(cd d))
(drm-custom-load "elisp/macros")
(require 'package)
(add-to-list 'package-archives
'("melpa" . "http://melpa.org/packages/") t)
(drm-custom-init "misc" ;general stuff
"cperl" ;nice perl mode
"hide-show" ;hide & show blocks
"cc-mode" ;c/c++
"elmode" ;elisp
;; "python"
"auto-hotkey" ;ahk
"matlab" ;own matlab mode
"latex" ;standard latex mode - convert to auctex at some point
"csharp" ;ugh
"asm" ;standard assembly language mode
;; "icicles" ;nice completion (does not play nice with stuff
"mpasm" ;PIC assembly mode - can't remember how finished it is
"org" ;org-mode - too fancy
"outline" ;good old outline mode
"stripes" ;funny highlighting
"graphviz" ;edit .dot files
"mss" ;cool start menu hack
;; "color-themes" ;make things less ugly --DEPRECATED--
;; "tomorrow-theme"
"base16-theme"
"completion-ui" ;don't think this is in use
"mini-wiki" ;own crappy wiki
"typing" ;typing tutor
;; "slime" ;nice lisp stuff
;; "remember" ;notes mode
;; "viper" ;vi has some nice features
"findr"
"cedet"
"qmake"
"comment"
"fortunes"
"geiser"
"ccl" ;CCL standards stuff
;; "git" ;add git to VC -- NOW USING MAGIT
"license"
"changelog"
"vbnet"
"ido"
"rails"
"markdown"
"haml"
"scss"
"yasnippet"
"vhdl-mode"
"magit"
"uniquify"
"cmake"
"expand-region"
"framemove"
"haskell"
"arduino"
"spotify"
"writing"
"paredit"
"lua-mode"
;; "evil" ; using this vi emulator now :)
;; "multi-term"
"ada"
"csp-mode"
"jq-mode"
"web-mode"
"yaml-mode"
)