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
|
2017-01-07 03:03:11 -05:00
|
|
|
;; Version: 1.3.1
|
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
|
|
|
|
2017-01-16 23:20:25 -05:00
|
|
|
(load (concat user-emacs-directory "core/core") nil t)
|
2016-01-29 02:04:27 -05:00
|
|
|
|
2017-01-16 23:20:25 -05:00
|
|
|
(doom! :emacs
|
|
|
|
dired
|
|
|
|
eshell
|
|
|
|
org ; for organized fearless leader
|
2016-05-20 09:23:46 -04:00
|
|
|
|
2017-01-16 23:20:25 -05:00
|
|
|
:apps
|
|
|
|
crm
|
|
|
|
email
|
|
|
|
finance
|
|
|
|
present
|
|
|
|
rss
|
|
|
|
stream ;
|
|
|
|
twitter
|
|
|
|
write
|
2015-04-22 20:48:28 -04:00
|
|
|
|
2017-01-16 23:20:25 -05:00
|
|
|
:lang
|
|
|
|
asm ; assembly for fun
|
|
|
|
cc ; C/C++/Obj-C madness
|
|
|
|
crystal ; ruby at the speed of c
|
|
|
|
csharp ; unity, .NET, and mono shenanigans
|
|
|
|
css ; #big-bang::before { content: ""; }
|
|
|
|
data ; config/data formats
|
|
|
|
emacs-lisp ; drown in parentheses
|
|
|
|
go ; the hipster dialect
|
|
|
|
haskell ; a language that's lazier than I am
|
|
|
|
java ; the poster child for carpal tunnel syndrome
|
|
|
|
javascript ; all(hope(abandon(ye(who(enter(here))))))
|
|
|
|
julia ; a better, faster MATLAB
|
|
|
|
latex ; write papers in Emacs
|
|
|
|
lua ; one-based indices? one-based indices
|
|
|
|
octave ; math isn't a choice, it's a way of life
|
|
|
|
php ; make php less awful to work with
|
|
|
|
processing ; for prototyping
|
|
|
|
python ; beautiful is better than ugly
|
|
|
|
rest ; emacs as a service
|
|
|
|
ruby ; 1.step do {|i| p "Ruby is #{i&1==0?'love':'life'}"}
|
|
|
|
rust ; Fe2O3.unwrap().unwrap().unwrap().unwrap()
|
|
|
|
scala ; java, but good
|
|
|
|
sh ; she sells (ba|z)sh shells on the C xor
|
|
|
|
swift ; who asked for emoji variables?
|
|
|
|
text ; writing docs for people to ignore
|
|
|
|
typescript ; javascript, but better
|
|
|
|
web ; The end is always near </html>
|
|
|
|
vim
|
|
|
|
)
|