init.el => init.example.el

This commit is contained in:
Henrik Lissner 2017-01-17 19:22:18 -05:00
parent 153f54b2d6
commit 62ce9115e5
2 changed files with 31 additions and 17 deletions

1
.gitignore vendored
View file

@ -3,6 +3,7 @@ var/
private/ private/
scripts/*/ scripts/*/
modules/autoloads.el modules/autoloads.el
init.el
# emacs tempfiles that shouldn't be there # emacs tempfiles that shouldn't be there
.mc-lists.el .mc-lists.el

View file

@ -2,7 +2,7 @@
;; ;;
;; Author: Henrik Lissner <henrik@lissner.net> ;; Author: Henrik Lissner <henrik@lissner.net>
;; URL: https://github.com/hlissner/.emacs.d ;; URL: https://github.com/hlissner/.emacs.d
;; Version: 1.3.1 ;; Version: 2.0.0
;; ;;
;; ================= =============== =============== ======== ======== ;; ================= =============== =============== ======== ========
;; \\ . . . . . . .\\ //. . . . . . .\\ //. . . . . . .\\ \\. . .\\// . . // ;; \\ . . . . . . .\\ //. . . . . . .\\ //. . . . . . .\\ \\. . .\\// . . //
@ -30,20 +30,29 @@
(load (concat user-emacs-directory "core/core") nil t) (load (concat user-emacs-directory "core/core") nil t)
(doom! :emacs (doom! :lib * ; does nothing if modules/lib/*/ only contains autoload.el
dired
eshell
org ; for organized fearless leader
:apps ;; These modules enhance built-in emacs functionality.
crm :emacs
email dired ;
finance eshell ; a consistent, cross-platform shell
present org ; for organized fearless leader
rss files ; library for manipulating files
stream ; buffers
twitter
write ;; 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 :lang
asm ; assembly for fun asm ; assembly for fun
@ -64,7 +73,6 @@
php ; make php less awful to work with php ; make php less awful to work with
processing ; for prototyping processing ; for prototyping
python ; beautiful is better than ugly python ; beautiful is better than ugly
rest ; emacs as a service
ruby ; 1.step do {|i| p "Ruby is #{i&1==0?'love':'life'}"} ruby ; 1.step do {|i| p "Ruby is #{i&1==0?'love':'life'}"}
rust ; Fe2O3.unwrap().unwrap().unwrap().unwrap() rust ; Fe2O3.unwrap().unwrap().unwrap().unwrap()
scala ; java, but good scala ; java, but good
@ -73,5 +81,10 @@
text ; writing docs for people to ignore text ; writing docs for people to ignore
typescript ; javascript, but better typescript ; javascript, but better
web ; The end is always near </html> web ; The end is always near </html>
vim 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)