2016-02-20 16:18:21 -05:00
|
|
|
;;; init.el
|
2014-07-15 02:21:56 -04:00
|
|
|
;;
|
2015-06-06 06:40:33 -04:00
|
|
|
;; Author: Henrik Lissner <henrik@lissner.net>
|
2016-03-30 00:51:12 -04:00
|
|
|
;; URL: https://github.com/hlissner/.emacs.d
|
2016-09-07 17:41:47 +02:00
|
|
|
;; Version: 1.2.6
|
2014-07-15 02:21:56 -04:00
|
|
|
;;
|
2016-05-20 22:37:30 -04:00
|
|
|
;; ================= =============== =============== ======== ========
|
|
|
|
;; \\ . . . . . . .\\ //. . . . . . .\\ //. . . . . . .\\ \\. . .\\// . . //
|
|
|
|
;; ||. . ._____. . .|| ||. . ._____. . .|| ||. . ._____. . .|| || . . .\/ . . .||
|
|
|
|
;; || . .|| ||. . || || . .|| ||. . || || . .|| ||. . || ||. . . . . . . ||
|
|
|
|
;; ||. . || || . .|| ||. . || || . .|| ||. . || || . .|| || . | . . . . .||
|
|
|
|
;; || . .|| ||. _-|| ||-_ .|| ||. . || || . .|| ||. _-|| ||-_.|\ . . . . ||
|
|
|
|
;; ||. . || ||-' || || `-|| || . .|| ||. . || ||-' || || `|\_ . .|. .||
|
|
|
|
;; || . _|| || || || || ||_ . || || . _|| || || || |\ `-_/| . ||
|
|
|
|
;; ||_-' || .|/ || || \|. || `-_|| ||_-' || .|/ || || | \ / |-_.||
|
|
|
|
;; || ||_-' || || `-_|| || || ||_-' || || | \ / | `||
|
|
|
|
;; || `' || || `' || || `' || || | \ / | ||
|
|
|
|
;; || .===' `===. .==='.`===. .===' /==. | \/ | ||
|
|
|
|
;; || .==' \_|-_ `===. .===' _|_ `===. .===' _-|/ `== \/ | ||
|
|
|
|
;; || .==' _-' `-_ `=' _-' `-_ `=' _-' `-_ /| \/ | ||
|
|
|
|
;; || .==' _-' '-__\._-' '-_./__-' `' |. /| | ||
|
|
|
|
;; ||.==' _-' `' | /==.||
|
|
|
|
;; ==' _-' \/ `==
|
|
|
|
;; \ _-' `-_ /
|
|
|
|
;; `'' ``'
|
2014-12-10 15:54:36 -05:00
|
|
|
;;
|
2016-05-20 22:37:30 -04:00
|
|
|
;; These demons are not part of GNU Emacs.
|
2014-12-05 17:28:03 -05:00
|
|
|
;;
|
2016-05-21 09:29:11 -04:00
|
|
|
;;; License: MIT
|
2014-08-29 22:37:25 -04:00
|
|
|
|
2016-05-23 06:26:28 -04:00
|
|
|
(defconst emacs-start-time (current-time))
|
2016-05-28 21:51:21 -04:00
|
|
|
(load (concat user-emacs-directory "core/core"))
|
2016-01-29 02:04:27 -05:00
|
|
|
|
2016-08-21 17:23:49 +02:00
|
|
|
(doom :theme 'doom-one
|
2016-08-28 23:13:00 +02:00
|
|
|
:font ("Fira Mono" 12)
|
2016-03-23 11:55:52 -04:00
|
|
|
|
2016-05-22 22:08:37 -04:00
|
|
|
;;; The heart of DOOM
|
2016-05-24 21:57:25 -04:00
|
|
|
core-popup ; taming sudden and inevitable windows
|
2016-05-22 22:08:37 -04:00
|
|
|
core-os ; os-specific config
|
|
|
|
core-scratch ; a perdier scratch buffer
|
|
|
|
core-ui ; draw me like one of your French editors
|
2016-09-08 00:15:24 +02:00
|
|
|
core-modeline ; a self-contained mode-line config for masochists
|
2016-05-22 22:08:37 -04:00
|
|
|
core-evil ; come to the dark side, we have cookies
|
|
|
|
core-editor ; filling the editor-shaped hole in the emacs OS
|
2016-05-26 18:43:22 -04:00
|
|
|
core-docs ; getting to the documentation
|
2016-05-22 22:08:37 -04:00
|
|
|
core-company ; auto-completion, for the lazy typist
|
|
|
|
core-yasnippet ; snippets, for the lazier typist
|
|
|
|
core-autoinsert ; file templates, for the laziest typist
|
|
|
|
core-flycheck ; get tazed for every semicolon you forget
|
|
|
|
core-project ; for project navigation aficionados
|
|
|
|
core-vcs ; remember remember, that commit in November
|
2016-06-04 22:47:20 -04:00
|
|
|
core-ivy ; a search engine for life and love
|
2016-05-22 22:08:37 -04:00
|
|
|
core-workgroups ; cure Emacs alzheimers + tab emulation
|
2016-07-19 15:01:38 -04:00
|
|
|
core-eval ; run code, run + REPL support
|
2016-05-20 09:23:46 -04:00
|
|
|
|
2016-05-22 22:08:37 -04:00
|
|
|
;;; Dev environments
|
2016-09-08 01:03:39 +02:00
|
|
|
module-asm ; Assembly
|
2016-05-22 22:08:37 -04:00
|
|
|
module-cc ; C/C++/Obj-C madness
|
|
|
|
module-crystal ; ruby at the speed of c
|
|
|
|
module-csharp ; unity, .NET, and mono shenanigans
|
|
|
|
module-css ; #big-bang::before { content: ""; }
|
|
|
|
module-data ; config/data formats
|
2016-05-23 06:26:28 -04:00
|
|
|
module-elisp ; drowning in parentheses
|
2016-06-18 01:31:04 -04:00
|
|
|
module-eshell ; so I can have a sane shell, even in Windows
|
2016-05-22 22:08:37 -04:00
|
|
|
module-go ; the hipster dialect
|
|
|
|
module-haskell ; a language that's lazier than I am
|
|
|
|
module-java ; the poster child for carpal tunnel syndrome
|
|
|
|
module-js ; all(hope(abandon(ye(who(enter(here))))))
|
2016-09-05 12:24:16 +02:00
|
|
|
module-julia ; A better, faster MATLAB
|
2016-05-22 22:08:37 -04:00
|
|
|
module-latex ; for writing papers in Emacs
|
2016-09-05 12:24:16 +02:00
|
|
|
module-lua ; one-based indices? one-based indices
|
2016-08-28 23:13:19 +02:00
|
|
|
module-octave ; math isn't a choice. It's a way of life
|
2016-05-22 22:08:37 -04:00
|
|
|
module-php ; making php less painful to work with
|
2016-07-19 15:01:38 -04:00
|
|
|
module-processing ; for prototyping
|
2016-05-22 22:08:37 -04:00
|
|
|
module-python ; beautiful is better than ugly
|
2016-05-26 18:51:39 -04:00
|
|
|
module-rest ; Emacs as a service
|
2016-05-22 22:08:37 -04:00
|
|
|
module-ruby ; 1.step do {|i| p "Ruby is #{i&1==0?'love':'life'}"}
|
|
|
|
module-rust ; Fe2O3.unwrap().unwrap().unwrap().unwrap()
|
|
|
|
module-scala ; Java, but good
|
|
|
|
module-sh ; she sells Z-shells by the C XOR
|
|
|
|
module-swift ; I wanted emoji variables. I got them
|
|
|
|
module-text ; writing docs for people to ignore
|
|
|
|
module-web ; The end is always near </html>
|
2016-04-23 22:08:46 -04:00
|
|
|
|
2016-07-19 15:01:38 -04:00
|
|
|
;;; Org
|
2016-06-06 20:03:11 -04:00
|
|
|
module-org ; for organized fearless leader
|
2016-08-28 23:13:38 +02:00
|
|
|
module-org-notes ; org-mode as a (modern?) note-taking platform
|
|
|
|
module-org-crm ; org-mode for business management
|
2015-11-17 02:11:48 -05:00
|
|
|
|
2016-06-08 03:10:27 -04:00
|
|
|
;;; Custom modules
|
2016-07-19 15:01:38 -04:00
|
|
|
custom-db ; emacs as a db browser/client
|
|
|
|
custom-debug ; nigh-universal debugging
|
2016-06-08 03:10:27 -04:00
|
|
|
custom-demo ; allow me to demonstrate...
|
2016-07-19 15:01:55 -04:00
|
|
|
custom-screeps ; The programmer MMO
|
2016-06-08 03:10:27 -04:00
|
|
|
custom-tags ; if you liked it you should've generated a tag for it
|
|
|
|
custom-tmux ; close the rift between GUI & terminal
|
|
|
|
custom-write ; Emacs as a word processor
|
2014-11-29 20:21:03 -05:00
|
|
|
|
2016-05-22 22:08:37 -04:00
|
|
|
;;; Personal
|
|
|
|
my-commands
|
|
|
|
my-bindings)
|
2015-04-22 20:48:28 -04:00
|
|
|
|