init.el 9.4 KB

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