doomemacs/init.el

101 lines
4.6 KiB
EmacsLisp
Raw Normal View History

2016-02-21 05:18:21 +08:00
;;; init.el
2014-07-15 14:21:56 +08:00
;;
2015-06-06 18:40:33 +08:00
;; Author: Henrik Lissner <henrik@lissner.net>
;; URL: https://github.com/hlissner/emacs.d
2016-02-27 06:59:56 +08:00
;; Version: 0.9.2
2014-07-15 14:21:56 +08:00
;;
;;; Are you pondering what I'm pondering, Pinky?
2014-12-11 04:54:36 +08:00
;;
2015-06-06 18:38:16 +08:00
;; ,,, !/:.
;; /::\". !!:::
;; :::::\". ," \:,::
;; ::::::\ ". ,","\::.
2015-06-06 18:40:33 +08:00
;; \:::::":\ "/""v' :'
2015-06-06 18:38:16 +08:00
;; !::::\ ! \ \ __
;; "::::\ \ ! \.&&&&,
2015-06-06 18:40:33 +08:00
;; ," __ ", cd,&&&&&&'
2015-06-06 18:38:16 +08:00
;; \ ". "" / \&&&" _,---
;; "",__\_ / _,:":::::
;; _," ,"" ,-,__,/":,_ ,",":::::::
;; _," ," `'' ::::,",__,,----,,__," /:::::::::
;; ," ,".__, \:::," " /:::":::::/
;; ," ,/"::::::\ >" (_-"/::::::
;; / ,"_!:::::::/, ," _,,--, /::::::/
;; / "" _,"\:::::::' ! ," ){:::::/
;; ! _," \ "", \,"""-,____,"__,,,"_," _/
2015-06-06 18:40:33 +08:00
;; ""t" \\ \ "-,_(*)&&&&(*)," \ ."
2015-06-06 18:38:16 +08:00
;; / \", ! , \ ! - )
;; ! \ "" ! !==!"-,__,'
;; ! \ """_""""`, ", /"_
2015-06-06 18:40:33 +08:00
;; \ , .l /" " ", \! ,_/
2015-06-06 18:38:16 +08:00
;; ), \ / \ \/ ,, /! !
;; ,::\ \," \ ! \/ ! !
;; _,::::" ) )\ ," ___ \ -,_, ,"",! !
;; __,,,::::"" ," ,":::,-:::--:" __\_!__/_""-,_!
;; ,,:::""""""" ,:_,""__...._"""::::"" /:::::" ""::::::
2015-06-06 18:40:33 +08:00
;; (:._ l::::::::::::\\/ "" ""
2015-06-06 18:38:16 +08:00
;; """"--,,,--- """"
2014-12-06 06:28:03 +08:00
;;
2015-06-06 18:40:33 +08:00
;; These mice are not part of GNU Emacs.
;;
;;; License: GPLv3
2014-08-30 10:37:25 +08:00
2016-01-29 20:10:07 +08:00
(defconst narf-theme 'narf-dark)
2016-02-18 09:10:29 +08:00
(defconst narf-default-font (font-spec :family "Hack" :size 12))
2015-04-23 08:48:28 +08:00
;;
(load (concat user-emacs-directory "bootstrap.el"))
;;
(narf '(core ; core/core.el
2015-11-17 15:11:48 +08:00
;; The heart of NARF
2016-02-27 06:59:27 +08:00
core-popup ; taming sudden and inevitable windows
core-ui ; draw me like one of your French editors
core-evil ; come to the dark side, we have cookies
core-editor ; filling the editor-shaped hole in the emacs OS
core-completion ; for the lazy typist
core-yasnippet ; for the lazier typist
core-file-templates ; for the laziest typist
core-flycheck ; code police; tazing you for every semicolon you forget
core-project ; whose project am I in?
core-vcs ; remember remember, that commit in November
core-helm ; a search engine for life and love
core-eval ; run code, run.
core-sessions ; cure Emacs alzheimers + tab emulation
;; Environments
2016-01-29 20:10:07 +08:00
module-apple ; Applescript, Swift, Launchbar, iOS, wallet syphons, etc.
module-cc ; c/c++/obj-c madness
module-csharp ; unity, .NET, and mono shenanigans
module-go ; the hipster dialect
module-java ; the poster child for carpal tunnel syndome
module-js ; all(hope(abandon(ye(who(enter(here))))))
module-lisp ; drowning in parentheses
module-lua ; one-based indices? one-based indices.
module-php ; making php less painful to work with
module-python ; beautiful is better than ugly
module-ruby ; <3
2016-01-29 20:10:07 +08:00
module-rust ; Fe2O3.unwrap().unwrap().unwrap().unwrap()
module-sh ; she sells Z-shells by the C XOR
2016-01-30 15:36:08 +08:00
module-text ; writing docs for people to ignore
module-tmux ; closing the rift between GUI & terminal
module-web ; for the 2.0'er
2015-04-23 08:48:28 +08:00
;; Experimental
;;module-crystal ; ruby at the speed of c
;;module-eshell ; for inferior OSes *cough*windows
;;module-nim ; look out Abraham
;;module-pony ; Dear Princess Compiler
2015-06-15 15:06:10 +08:00
;; Extra Tools
2016-01-31 10:16:10 +08:00
module-demo ; allow me to demonstrate...
2016-02-27 02:30:01 +08:00
module-ansible
2015-12-23 16:51:15 +08:00
;; Key bindings & ex commands
my-bindings
my-commands
))
2015-10-01 01:47:57 +08:00
2015-06-06 18:40:33 +08:00
;;; I think so Brain...