doomemacs/init.example.el

89 lines
4.4 KiB
EmacsLisp

;;; init.el
;;
;; Author: Henrik Lissner <henrik@lissner.net>
;; URL: https://github.com/hlissner/.emacs.d
;; Version: 2.0.0
;;
;; ================= =============== =============== ======== ========
;; \\ . . . . . . .\\ //. . . . . . .\\ //. . . . . . .\\ \\. . .\\// . . //
;; ||. . ._____. . .|| ||. . ._____. . .|| ||. . ._____. . .|| || . . .\/ . . .||
;; || . .|| ||. . || || . .|| ||. . || || . .|| ||. . || ||. . . . . . . ||
;; ||. . || || . .|| ||. . || || . .|| ||. . || || . .|| || . | . . . . .||
;; || . .|| ||. _-|| ||-_ .|| ||. . || || . .|| ||. _-|| ||-_.|\ . . . . ||
;; ||. . || ||-' || || `-|| || . .|| ||. . || ||-' || || `|\_ . .|. .||
;; || . _|| || || || || ||_ . || || . _|| || || || |\ `-_/| . ||
;; ||_-' || .|/ || || \|. || `-_|| ||_-' || .|/ || || | \ / |-_.||
;; || ||_-' || || `-_|| || || ||_-' || || | \ / | `||
;; || `' || || `' || || `' || || | \ / | ||
;; || .===' `===. .==='.`===. .===' /==. | \/ | ||
;; || .==' \_|-_ `===. .===' _|_ `===. .===' _-|/ `== \/ | ||
;; || .==' _-' `-_ `=' _-' `-_ `=' _-' `-_ /| \/ | ||
;; || .==' _-' '-__\._-' '-_./__-' `' |. /| | ||
;; ||.==' _-' `' | /==.||
;; ==' _-' \/ `==
;; \ _-' `-_ /
;; `'' ``'
;;
;; These demons are not part of GNU Emacs.
;;
;;; License: MIT
(load (concat user-emacs-directory "core/core") nil t)
(doom! :lib * ; does nothing if modules/lib/*/ only contains autoload.el
;; These modules enhance built-in emacs functionality.
:emacs
dired ;
eshell ; a consistent, cross-platform shell
org ; for organized fearless leader
;; Applications are large-scale states that, when activated, will
;; transform Emacs into something other than an editor. See
;; `doom-toggle-state' to do so (and see a list of available states).
:app
crm ; org-mode for client relations management
email ; emacs as an email client
finance ; keeping track of my shekels
present ; showing off presentations in emacs
restclient ; emacs as a service
rss ; emacs as an RSS reader
stream ; https://livecoding.tv/vnought
twitter ; https://twitter.com/vnought
write ; emacs as a word processor (latex + org)
: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
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>
viml ; PURGE THE HERETICS, FOR THE EMPEROR
;; Private modules are your own personal modules, and aren't tracked in
;; the repo. Only one module is included with DOOM emacs here. Mine! Feel
;; free to copy it to your own module and have fun.
:private hlissner)