doomemacs/init.el
2017-01-03 22:50:52 -05:00

96 lines
5.0 KiB
EmacsLisp

;;; init.el
;;
;; Author: Henrik Lissner <henrik@lissner.net>
;; URL: https://github.com/hlissner/.emacs.d
;; Version: 1.3.0
;;
;; ================= =============== =============== ======== ========
;; \\ . . . . . . .\\ //. . . . . . .\\ //. . . . . . .\\ \\. . .\\// . . //
;; ||. . ._____. . .|| ||. . ._____. . .|| ||. . ._____. . .|| || . . .\/ . . .||
;; || . .|| ||. . || || . .|| ||. . || || . .|| ||. . || ||. . . . . . . ||
;; ||. . || || . .|| ||. . || || . .|| ||. . || || . .|| || . | . . . . .||
;; || . .|| ||. _-|| ||-_ .|| ||. . || || . .|| ||. _-|| ||-_.|\ . . . . ||
;; ||. . || ||-' || || `-|| || . .|| ||. . || ||-' || || `|\_ . .|. .||
;; || . _|| || || || || ||_ . || || . _|| || || || |\ `-_/| . ||
;; ||_-' || .|/ || || \|. || `-_|| ||_-' || .|/ || || | \ / |-_.||
;; || ||_-' || || `-_|| || || ||_-' || || | \ / | `||
;; || `' || || `' || || `' || || | \ / | ||
;; || .===' `===. .==='.`===. .===' /==. | \/ | ||
;; || .==' \_|-_ `===. .===' _|_ `===. .===' _-|/ `== \/ | ||
;; || .==' _-' `-_ `=' _-' `-_ `=' _-' `-_ /| \/ | ||
;; || .==' _-' '-__\._-' '-_./__-' `' |. /| | ||
;; ||.==' _-' `' | /==.||
;; ==' _-' \/ `==
;; \ _-' `-_ /
;; `'' ``'
;;
;; These demons are not part of GNU Emacs.
;;
;;; License: MIT
(load (concat user-emacs-directory "core/core"))
(doom core-ui ; draw me like one of your French editors
core-popup ; taming sudden and inevitable windows
core-os ; os-specific configs
core-modeline ; a self-contained mode-line config for masochists
core-evil ; vim in emacs; come to the dark side, we have cookies
core-editor ; fill the editor-shaped hole in the emacs OS
core-docs ; highway to code documentation
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
core-ivy ; a search engine for life and love
core-workgroups ; cure Emacs alzheimers + tab emulation
core-eval ; run code, run + REPL support
core-scratch ; a perdier scratch buffer
;;; Dev environments
module-asm ; assembly for fun
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
module-elisp ; drown in parentheses
module-eshell ; so I can have a sane shell, even in Windows
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))))))
module-julia ; a better, faster MATLAB
module-latex ; write papers in Emacs
module-lua ; one-based indices? one-based indices
module-octave ; math isn't a choice, it's a way of life
module-php ; make php less awful to work with
module-processing ; for prototyping
module-python ; beautiful is better than ugly
module-rest ; emacs as a service
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 ; who asked for emoji variables?
module-text ; writing docs for people to ignore
module-web ; The end is always near </html>
;;; Org
module-org ; for organized fearless leader
;;; Custom/experimental modules
custom-db ; emacs as a db browser/client
custom-debug ; nigh-universal debugging
custom-demo ; allow me to demonstrate...
custom-screeps ; The programmer MMO
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
;;; Personal settings
my-commands
my-bindings)