init.el 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195
  1. ;;; init.el -*- lexical-binding: t; -*-
  2. ;; This file controls what Doom modules are enabled and what order they load
  3. ;; in. Remember to run 'doom sync' after modifying it!
  4. ;; NOTE Press 'SPC h d h' (or 'C-h d h' for non-vim users) to access Doom's
  5. ;; documentation. There you'll find information about all of Doom's
  6. ;; modules and what flags they support.
  7. ;; NOTE Move your cursor over a module's name (or its flags) and press 'K' (or
  8. ;; 'C-c g k' for non-vim users) to view its documentation. This works on
  9. ;; flags as well (those symbols that start with a plus).
  10. ;;
  11. ;; Alternatively, press 'gd' (or 'C-c g d') on a module to browse its
  12. ;; directory (for easy access to its source code).
  13. (doom! :input
  14. ;;chinese
  15. ;;japanese
  16. :completion
  17. (company ; the ultimate code completion backend
  18. +childframe)
  19. ;;helm ; the *other* search engine for love and life
  20. ;;ido ; the other *other* search engine...
  21. (ivy ; a search engine for love and life
  22. +fuzzy
  23. +icons)
  24. :ui
  25. ;;deft ; notational velocity for Emacs
  26. doom ; what makes DOOM look the way it does
  27. doom-dashboard ; a nifty splash screen for Emacs
  28. doom-quit ; DOOM quit-message prompts when you quit Emacs
  29. ;;fill-column ; a `fill-column' indicator
  30. hl-todo ; highlight TODO/FIXME/NOTE/DEPRECATED/HACK/REVIEW
  31. ;;hydra
  32. ;;indent-guides ; highlighted indent columns
  33. ligatures ;
  34. ;minimap ; show a map of the code on the side
  35. modeline ; snazzy, Atom-inspired modeline, plus API
  36. nav-flash ; blink cursor line after big motions
  37. ;;neotree ; a project drawer, like NERDTree for vim
  38. ophints ; highlight the region an operation acts on
  39. (popup
  40. +all
  41. +defaults) ; tame sudden yet inevitable temporary windows
  42. ;;tabs ; an tab bar for Emacs
  43. treemacs ; a project drawer, like neotree but cooler
  44. unicode ; extended unicode support for various languages
  45. vc-gutter ; vcs diff in the fringe
  46. vi-tilde-fringe ; fringe tildes to mark beyond EOB
  47. (window-select +numbers) ; visually switch windows
  48. workspaces ; tab emulation, persistence & separate workspaces
  49. zen ; distraction-free coding or writing
  50. :editor
  51. (evil +everywhere); come to the dark side, we have cookies
  52. file-templates ; auto-snippets for empty files
  53. fold ; (nigh) universal code folding
  54. (format +onsave) ; automated prettiness
  55. ;;god ; run Emacs commands without modifier keys
  56. ;;lispy ; vim for lisp, for people who don't like vim
  57. multiple-cursors ; editing in many places at once
  58. ;;objed ; text object editing for the innocent
  59. ;;parinfer ; turn lisp into python, sort of
  60. rotate-text ; cycle region at point between text candidates
  61. snippets ; my elves. They type so I don't have to
  62. word-wrap ; soft wrapping with language-aware indent
  63. :emacs
  64. (dired +icons) ; making dired pretty [functional]
  65. electric ; smarter, keyword-based electric-indent
  66. (ibuffer +icons) ; interactive buffer management
  67. (undo +tree) ; persistent, smarter undo for your inevitable mistakes
  68. vc ; version-control and Emacs, sitting in a tree
  69. :term
  70. eshell ; the elisp shell that works everywhere
  71. ;;shell ; simple shell REPL for Emacs
  72. ;;term ; basic terminal emulator for Emacs
  73. vterm ; the best terminal emulation in Emacs
  74. :checkers
  75. syntax ; tasing you for every semicolon you forget
  76. spell ; tasing you for misspelling mispelling
  77. grammar ; tasing grammar mistake every you make
  78. :tools
  79. ;;ansible
  80. ;;debugger ; FIXME stepping through code, to help you add bugs
  81. direnv
  82. ;;docker
  83. editorconfig ; let someone else argue about tabs vs spaces
  84. ;;ein ; tame Jupyter notebooks with emacs
  85. (eval +overlay) ; run code, run (also, repls)
  86. gist ; interacting with github gists
  87. (lookup ; navigate your code and its documentation
  88. +dictionary
  89. +docsets)
  90. lsp
  91. magit ; a git porcelain for Emacs
  92. make ; run make tasks from Emacs
  93. pass ; password manager for nerds
  94. pdf ; pdf enhancements
  95. ;;prodigy ; FIXME managing external services & code builders
  96. ;;rgb ; creating color strings
  97. ;;taskrunner ; taskrunner for all your projects
  98. ;;terraform ; infrastructure as code
  99. ;;tmux ; an API for interacting with tmux
  100. ;;upload ; map local to remote projects via ssh/ftp
  101. :lang
  102. ;;agda ; types of types of types of types...
  103. ;;cc ; C/C++/Obj-C madness
  104. ;;clojure ; java with a lisp
  105. ;;common-lisp ; if you've seen one lisp, you've seen them all
  106. ;;coq ; proofs-as-programs
  107. crystal ; ruby at the speed of c
  108. ;;csharp ; unity, .NET, and mono shenanigans
  109. data ; config/data formats
  110. ;;(dart +flutter) ; paint ui and not much else
  111. ;;elixir ; erlang done right
  112. ;;elm ; care for a cup of TEA?
  113. emacs-lisp ; drown in parentheses
  114. ;;erlang ; an elegant language for a more civilized age
  115. ;;ess ; emacs speaks statistics
  116. ;;faust ; dsp, but you get to keep your soul
  117. ;;fsharp ; ML stands for Microsoft's Language
  118. ;;fstar ; (dependent) types and (monadic) effects and Z3
  119. ;;gdscript ; the language you waited for
  120. (go +lsp) ; the hipster dialect
  121. ;;(haskell +dante) ; a language that's lazier than I am
  122. ;;hy ; readability of scheme w/ speed of python
  123. ;;idris ;
  124. ;;json ; At least it ain't XML
  125. ;;(java +meghanada) ; the poster child for carpal tunnel syndrome
  126. (javascript +lsp) ; all(hope(abandon(ye(who(enter(here))))))
  127. ;;julia ; a better, faster MATLAB
  128. ;;kotlin ; a better, slicker Java(Script)
  129. ;;latex ; writing papers in Emacs has never been so fun
  130. ;;lean
  131. ;;factor
  132. ledger ; an accounting system in Emacs
  133. ;;lua ; one-based indices? one-based indices
  134. markdown ; writing docs for people to ignore
  135. nim ; python + lisp at the speed of c
  136. ;;nix ; I hereby declare "nix geht mehr!"
  137. ;;ocaml ; an objective camel
  138. (org ; organize your plain life in plain text
  139. +hugo
  140. +dragndrop
  141. +gnuplot
  142. +ipython ; ipython support for babel
  143. +journal
  144. +pretty
  145. +roam
  146. +pandoc ; pandoc integration into org's exporter
  147. +pomodoro
  148. +present) ; using Emacs for presentations
  149. ;;perl ; write code no one else can comprehend
  150. ;;php ; perl's insecure younger brother
  151. plantuml ; diagrams for confusing people more
  152. ;;purescript ; javascript, but functional
  153. (python +lsp +pyright) ; beautiful is better than ugly
  154. ;;qt ; the 'cutest' gui framework ever
  155. ;;racket ; a DSL for DSLs
  156. rest ; Emacs as a REST client
  157. rst ; ReST in peace
  158. (ruby +rails +lsp) ; 1.step {|i| p "Ruby is #{i.even? ? 'love' : 'life'}"}
  159. (rust +lsp) ; Fe2O3.unwrap().unwrap().unwrap().unwrap()
  160. ;;scala ; java, but good
  161. ;;scheme ; a fully conniving family of lisps
  162. sh ; she sells {ba,z,fi}sh shells on the C xor
  163. ;;sml
  164. ;;solidity ; do you need a blockchain? No.
  165. ;;swift ; who asked for emoji variables?
  166. ;;terra ; Earth and Moon in alignment for performance.
  167. web ; the tubes
  168. yaml ; JSON, but readable
  169. :email
  170. ;;(mu4e +gmail)
  171. notmuch
  172. ;;(wanderlust +gmail)
  173. :app
  174. ;;calendar
  175. irc ; how neckbeards socialize
  176. rss ; emacs as an RSS reader
  177. ;;twitter ; twitter client https://twitter.com/vnought
  178. :config
  179. literate
  180. (default +bindings +smartparens))