My personal configuration files for Doom emacs
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

184 lines
8.9 KiB

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