Flesh out init.example.el
This commit is contained in:
parent
4c8e7939f2
commit
bb95a02480
1 changed files with 89 additions and 48 deletions
|
@ -28,49 +28,81 @@
|
||||||
;;
|
;;
|
||||||
;;; License: MIT
|
;;; License: MIT
|
||||||
|
|
||||||
(load (concat user-emacs-directory "core/core") nil t)
|
(setq user-emacs-directory "~/work/conf/doom-emacs-old")
|
||||||
|
|
||||||
(doom! :lib * ; does nothing if modules/lib/*/ only contains autoload.el
|
(require 'core (concat user-emacs-directory "core/core"))
|
||||||
|
|
||||||
|
(doom! :feature
|
||||||
|
evil ; come to the dark side, we have cookies
|
||||||
|
completion ; company-mode & auto-complete; for lazy typists
|
||||||
|
dev ; tools for tweaking DOOM Emacs
|
||||||
|
ivy ; a search engine for love and life
|
||||||
|
snippets ; my elves. They type so I don't have to
|
||||||
|
syntax-checking ; tasing you for every missing semicolon
|
||||||
|
spell-checking ; tasing you for mispellings and grammar derps
|
||||||
|
version-control ; remember, remember that commit in November
|
||||||
|
file-templates ; auto-snippets for empty files, for lazier typists
|
||||||
|
repl ; run code, run
|
||||||
|
jump ; navigating your code
|
||||||
|
workspaces ; tab emulation, persistence and separate workspaces
|
||||||
|
|
||||||
|
:ui
|
||||||
|
doom ; doom-one; a look inspired by Atom's Dark One
|
||||||
|
doom-dashboard ; a nifty splash screen for Emacs
|
||||||
|
doom-modeline ; a snazzy Atom-inspired mode-line
|
||||||
|
git-gutter ; diffs in the fringe
|
||||||
|
|
||||||
|
:fun
|
||||||
|
doom-quit ; DOOM quit-message prompts when you quit Emacs
|
||||||
|
|
||||||
;; These modules enhance built-in emacs functionality.
|
|
||||||
:emacs
|
:emacs
|
||||||
|
autoinsert ; file templates, for the laziest typists
|
||||||
dired ;
|
dired ;
|
||||||
eshell ; a consistent, cross-platform shell
|
eshell ; a consistent, cross-platform shell
|
||||||
|
ido ;
|
||||||
org ; for organized fearless leader
|
org ; for organized fearless leader
|
||||||
|
|
||||||
;; Applications are large-scale states that, when activated, will
|
:tool
|
||||||
;; transform Emacs into something other than an editor. See
|
dash ; dash.app
|
||||||
;; `doom-toggle-state' to do so (and see a list of available states).
|
google ;
|
||||||
|
tmux ;
|
||||||
|
rest ;
|
||||||
|
|
||||||
|
;; Applications are large, toggle-able states that transform Emacs to
|
||||||
|
;; fulfill a specific purpose. See `doom/toggle'.
|
||||||
:app
|
:app
|
||||||
crm ; org-mode for client relations management
|
crm ; org-mode for client relations management
|
||||||
email ; emacs as an email client
|
db ; Emacs as a database browser
|
||||||
|
email ; Emacs as an email client
|
||||||
finance ; keeping track of my shekels
|
finance ; keeping track of my shekels
|
||||||
present ; showing off presentations in emacs
|
present ; showing off presentations in emacs
|
||||||
restclient ; emacs as a service
|
|
||||||
rss ; emacs as an RSS reader
|
rss ; emacs as an RSS reader
|
||||||
stream ; https://livecoding.tv/vnought
|
stream ; for streaming code (https://livecoding.tv/vnought)
|
||||||
twitter ; https://twitter.com/vnought
|
twitter ; twitter client https://twitter.com/vnought
|
||||||
write ; emacs as a word processor (latex + org)
|
write ; emacs as a word processor (latex + org + markdown)
|
||||||
|
|
||||||
:lang
|
:lang
|
||||||
asm ; assembly for fun
|
asm ; assembly for fun or debugging
|
||||||
cc ; C/C++/Obj-C madness
|
cc ; C/C++/Obj-C madness
|
||||||
crystal ; ruby at the speed of c
|
crystal ; ruby at the speed of c
|
||||||
csharp ; unity, .NET, and mono shenanigans
|
csharp ; unity, .NET, and mono shenanigans
|
||||||
css ; #big-bang::before { content: ""; }
|
css ; #big-bang::before { content: ""; }
|
||||||
data ; config/data formats
|
data ; config/data formats
|
||||||
emacs-lisp ; drown in parentheses
|
emacs-lisp ; drown in parentheses
|
||||||
|
git ; various git files
|
||||||
go ; the hipster dialect
|
go ; the hipster dialect
|
||||||
haskell ; a language that's lazier than I am
|
haskell ; a language that's lazier than I am
|
||||||
|
html ; The end is always near </html>
|
||||||
java ; the poster child for carpal tunnel syndrome
|
java ; the poster child for carpal tunnel syndrome
|
||||||
javascript ; all(hope(abandon(ye(who(enter(here))))))
|
javascript ; all(hope(abandon(ye(who(enter(here))))))
|
||||||
julia ; a better, faster MATLAB
|
julia ; a better, faster MATLAB
|
||||||
latex ; write papers in Emacs
|
latex ; writing papers in Emacs has never been so fun
|
||||||
lua ; one-based indices? one-based indices
|
lua ; one-based indices? one-based indices
|
||||||
octave ; math isn't a choice, it's a way of life
|
octave ; math isn't a choice, it's a way of life
|
||||||
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 REST client
|
||||||
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
|
||||||
|
@ -78,11 +110,20 @@
|
||||||
swift ; who asked for emoji variables?
|
swift ; who asked for emoji variables?
|
||||||
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>
|
|
||||||
viml ; PURGE THE HERETICS, FOR THE EMPEROR
|
viml ; PURGE THE HERETICS, FOR THE EMPEROR
|
||||||
|
|
||||||
;; Private modules are your own personal modules, and aren't tracked in
|
:frameworks
|
||||||
;; the repo. Only one module is included with DOOM emacs here. Mine! Feel
|
angular
|
||||||
;; free to copy it to your own module and have fun.
|
jekyll
|
||||||
|
laravel
|
||||||
|
nodejs
|
||||||
|
rails
|
||||||
|
react
|
||||||
|
launchbar
|
||||||
|
screeps
|
||||||
|
|
||||||
|
;; Private modules are 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)
|
:private hlissner)
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue