init.el 9.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201
  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 a link to Doom's Module Index where all
  6. ;; of our modules are listed, including what flags they support.
  7. ;; NOTE Move your cursor over a module's name (or its flags) and press 'K' (or
  8. ;; 'C-c c 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 c d') on a module to browse its
  12. ;; directory (for easy access to its source code).
  13. (doom! :input
  14. ;;bidi ; (tfel ot) thgir etirw uoy gnipleh
  15. ;;chinese
  16. ;;japanese
  17. ;;layout ; auie,ctsrnm is the superior home row
  18. :completion
  19. company ; the ultimate code completion backend
  20. ;;helm ; the *other* search engine for love and life
  21. ;;ido ; the other *other* search engine...
  22. ;;ivy ; a search engine for love and life
  23. vertico ; the search engine of the future
  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. (emoji +unicode) ; 🙂
  30. hl-todo ; highlight TODO/FIXME/NOTE/DEPRECATED/HACK/REVIEW
  31. ;;hydra
  32. ;;indent-guides ; highlighted indent columns
  33. (ligatures ; ligatures and symbols to make your code pretty again
  34. +pragmata-pro
  35. +extra)
  36. ;;minimap ; show a map of the code on the side
  37. ;; modeline ; snazzy, Atom-inspired modeline, plus API
  38. ;;nav-flash ; blink cursor line after big motions
  39. ;;neotree ; a project drawer, like NERDTree for vim
  40. ophints ; highlight the region an operation acts on
  41. (popup +defaults) ; tame sudden yet inevitable temporary windows
  42. ;;tabs ; a tab bar for Emacs
  43. treemacs ; a project drawer, like neotree but cooler
  44. ;;unicode ; extended unicode support for various languages
  45. (vc-gutter +pretty) ; vcs diff in the fringe
  46. vi-tilde-fringe ; fringe tildes to mark beyond EOB
  47. ;;window-select ; 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 ; making dired pretty [functional]
  65. electric ; smarter, keyword-based electric-indent
  66. ;;ibuffer ; interactive buffer management
  67. undo ; 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 +flyspell) ; tasing you for misspelling mispelling
  77. ;;grammar ; tasing grammar mistake every you make
  78. :tools
  79. ;;ansible
  80. ;;biblio ; Writes a PhD for you (citation needed)
  81. ;;collab ; buffers with friends
  82. ;;debugger ; FIXME stepping through code, to help you add bugs
  83. ;;direnv
  84. ;;docker
  85. editorconfig ; let someone else argue about tabs vs spaces
  86. ein ; tame Jupyter notebooks with emacs
  87. (eval +overlay) ; run code, run (also, repls)
  88. ;;gist ; interacting with github gists
  89. lookup ; navigate your code and its documentation
  90. lsp ; M-x vscode
  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. ;;tree-sitter ; syntax and parsing, sitting in a tree...
  101. ;;upload ; map local to remote projects via ssh/ftp
  102. :os
  103. (:if IS-MAC macos) ; improve compatibility with macOS
  104. ;;tty ; improve the terminal Emacs experience
  105. :lang
  106. ;;agda ; types of types of types of types...
  107. ;;beancount ; mind the GAAP
  108. (cc +lsp) ; C > C++ == 1
  109. ;;clojure ; java with a lisp
  110. ;;common-lisp ; if you've seen one lisp, you've seen them all
  111. ;;coq ; proofs-as-programs
  112. ;;crystal ; ruby at the speed of c
  113. ;;csharp ; unity, .NET, and mono shenanigans
  114. data ; config/data formats
  115. ;;(dart +flutter) ; paint ui and not much else
  116. ;;dhall
  117. ;;elixir ; erlang done right
  118. ;;elm ; care for a cup of TEA?
  119. emacs-lisp ; drown in parentheses
  120. ;;erlang ; an elegant language for a more civilized age
  121. ;;ess ; emacs speaks statistics
  122. ;;factor
  123. ;;faust ; dsp, but you get to keep your soul
  124. ;;fortran ; in FORTRAN, GOD is REAL (unless declared INTEGER)
  125. ;;fsharp ; ML stands for Microsoft's Language
  126. ;;fstar ; (dependent) types and (monadic) effects and Z3
  127. ;;gdscript ; the language you waited for
  128. ;;(go +lsp) ; the hipster dialect
  129. ;;(graphql +lsp) ; Give queries a REST
  130. ;;(haskell +lsp) ; a language that's lazier than I am
  131. ;;hy ; readability of scheme w/ speed of python
  132. ;;idris ; a language you can depend on
  133. ;;json ; At least it ain't XML
  134. ;;(java +lsp) ; the poster child for carpal tunnel syndrome
  135. ;;javascript ; all(hope(abandon(ye(who(enter(here))))))
  136. ;;julia ; a better, faster MATLAB
  137. ;;kotlin ; a better, slicker Java(Script)
  138. ;;latex ; writing papers in Emacs has never been so fun
  139. ;;lean ; for folks with too much to prove
  140. ;;ledger ; be audit you can be
  141. lua ; one-based indices? one-based indices
  142. markdown ; writing docs for people to ignore
  143. ;;nim ; python + lisp at the speed of c
  144. ;;nix ; I hereby declare "nix geht mehr!"
  145. ;;ocaml ; an objective camel
  146. (org ; organize your plain life in plain text
  147. +brain
  148. +dragndrop
  149. +jupyter
  150. +pandoc)
  151. ;;php ; perl's insecure younger brother
  152. ;;plantuml ; diagrams for confusing people more
  153. ;;purescript ; javascript, but functional
  154. python ; beautiful is better than ugly
  155. qt ; the 'cutest' gui framework ever
  156. ;;racket ; a DSL for DSLs
  157. ;;raku ; the artist formerly known as perl6
  158. ;;rest ; Emacs as a REST client
  159. ;;rst ; ReST in peace
  160. ;;(ruby +rails) ; 1.step {|i| p "Ruby is #{i.even? ? 'love' : 'life'}"}
  161. (rust +lsp) ; Fe2O3.unwrap().unwrap().unwrap().unwrap()
  162. ;;scala ; java, but good
  163. ;;(scheme +guile) ; a fully conniving family of lisps
  164. sh ; she sells {ba,z,fi}sh shells on the C xor
  165. ;;sml
  166. ;;solidity ; do you need a blockchain? No.
  167. ;;swift ; who asked for emoji variables?
  168. ;;terra ; Earth and Moon in alignment for performance.
  169. ;;web ; the tubes
  170. ;;yaml ; JSON, but readable
  171. ;;zig ; C, but simpler
  172. :email
  173. ;;(mu4e +org +gmail)
  174. ;;notmuch
  175. ;;(wanderlust +gmail)
  176. :app
  177. calendar
  178. ;;emms
  179. ;;everywhere ; *leave* Emacs!? You must be joking
  180. ;;irc ; how neckbeards socialize
  181. ;;(rss +org) ; emacs as an RSS reader
  182. ;;twitter ; twitter client https://twitter.com/vnought
  183. :config
  184. literate
  185. (default +bindings +smartparens))