doomemacs/init.el

114 lines
5.2 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>
2016-03-30 12:51:12 +08:00
;; URL: https://github.com/hlissner/.emacs.d
2016-05-12 15:07:08 +08:00
;; Version: 1.0.0
2014-07-15 14:21:56 +08:00
;;
;;; Are you pondering what I'm pondering, Pinky?
2014-12-11 04:54:36 +08:00
;;
;; ,,, !/:.
;; /::\". !!:::
;; :::::\". ," \:,::
;; ::::::\ ". ,","\::.
;; \:::::":\ "/""v' :'
;; !::::\ ! \ \ __
;; "::::\ \ ! \.&&&&,
;; ," __ ", cd,&&&&&&'
;; \ ". "" / \&&&" _,---
;; "",__\_ / _,:":::::
;; _," ,"" ,-,__,/":,_ ,",":::::::
;; _," ," `'' ::::,",__,,----,,__," /:::::::::
;; ," ,".__, \:::," " /:::":::::/
;; ," ,/"::::::\ >" (_-"/::::::
;; / ,"_!:::::::/, ," _,,--, /::::::/
;; / "" _,"\:::::::' ! ," ){:::::/
;; ! _," \ "", \,"""-,____,"__,,,"_," _/
;; ""t" \\ \ "-,_(*)&&&&(*)," \ ."
;; / \", ! , \ ! - )
;; ! \ "" ! !==!"-,__,'
;; ! \ """_""""`, ", /"_
;; \ , .l /" " ", \! ,_/
;; ), \ / \ \/ ,, /! !
;; ,::\ \," \ ! \/ ! !
;; _,::::" ) )\ ," ___ \ -,_, ,"",! !
;; __,,,::::"" ," ,":::,-:::--:" __\_!__/_""-,_!
;; ,,:::""""""" ,:_,""__...._"""::::"" /:::::" ""::::::
;; (:._ l::::::::::::\\/ "" ""
;; """"--,,,--- """"
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: MIT
2014-08-30 10:37:25 +08:00
(load (concat user-emacs-directory "bootstrap.el"))
;;
(defconst narf-default-theme 'narf-dark)
2016-04-19 15:23:34 +08:00
(defconst narf-default-font (font-spec :family "Hack" :size 12))
2016-03-23 23:55:52 +08:00
(setq user-full-name "Henrik Lissner"
user-mail-address "henrik@lissner.net")
(narf `(core ; core/core.el
;; OS-specific config
,(cond (IS-MAC 'core-os-osx)
(IS-LINUX 'core-os-linux)
(IS-WINDOWS 'core-os-win32))
2015-11-17 15:11:48 +08:00
;; The heart of NARF
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-company ; for the lazy typist
core-yasnippet ; for the lazier typist
core-autoinsert ; for the laziest typist
core-flycheck ; get tazed 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-workgroups ; cure Emacs alzheimers + tab emulation
core-eval ; run code, run; debug too
;; Environments
module-apple ; Applescript, Swift, Launchbar & other wallet syphons
module-cc ; C/C++/Obj-C madness
module-crystal ; ruby at the speed of c
module-csharp ; unity, .NET, and mono shenanigans
module-data ; config and data formats
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 ; MATLAB, but fast
module-latex ; for writing papers in Emacs
module-lisp ; drowning in parentheses
module-lua ; one-based indices? one-based indices.
module-org ; for organized fearless leader
module-php ; making php less painful to work with
module-processing ; pretty prototypes
module-python ; beautiful is better than ugly
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-text ; writing docs for people to ignore
module-web ; #big-bang::before { content: ""; }
2015-04-23 08:48:28 +08:00
;; Experimental
;;module-eshell ; for inferior OSes *cough*windows
2016-04-19 14:08:48 +08:00
;; Extra libraries
extra-demo ; allow me to demonstrate...
extra-tags ; if you liked it you should've generated a tag for it
extra-tmux ; close the rift between GUI & terminal
extra-write ; Emacs as a word processor
2015-12-23 16:51:15 +08:00
2016-04-19 14:08:48 +08:00
;; Customization
my-bindings
my-commands
))
2015-10-01 01:47:57 +08:00
2015-06-06 18:40:33 +08:00
;;; I think so Brain...