PageRenderTime 27ms CodeModel.GetById 18ms RepoModel.GetById 1ms app.codeStats 0ms

/dot_doom.d/init.el

https://gitlab.com/lunik1/dotfiles
Emacs Lisp | 188 lines | 77 code | 18 blank | 93 comment | 0 complexity | 1f21a6605b0c50313f6e95592863bdc9 MD5 | raw file
  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 +childframe) ; the ultimate code completion backend
  19. ;;helm ; the *other* search engine for love and life
  20. ;;ido ; the other *other* search engine...
  21. (ivy +icons +fuzzy) ; a search engine for love and life ;; idiom for processing a list of files in dired's marked files
  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. fill-column ; a `fill-column' indicator
  28. hl-todo ; highlight TODO/FIXME/NOTE/DEPRECATED/HACK/REVIEW
  29. hydra
  30. indent-guides ; highlighted indent columns
  31. (ligatures +extra) ; ligatures and symbols to make your code pretty again
  32. ;;minimap ; show a map of the code on the side
  33. modeline ; snazzy, Atom-inspired modeline, plus API
  34. ;;nav-flash ; blink cursor line after big motions
  35. ;;neotree ; a project drawer, like NERDTree for vim
  36. ophints ; highlight the region an operation acts on
  37. (popup +all) ; tame sudden yet inevitable temporary windows
  38. ;;tabs ; a tab bar for Emacs
  39. treemacs ; a project drawer, like neotree but cooler
  40. ; unicode ; extended unicode support for various languages
  41. vc-gutter ; vcs diff in the fringe
  42. vi-tilde-fringe ; fringe tildes to mark beyond EOB
  43. (window-select +numbers +ace-window) ; visually switch windows
  44. workspaces ; tab emulation, persistence & separate workspaces
  45. zen ; distraction-free coding or writing (annd mixed-pitch)
  46. :editor
  47. (evil +everywhere); come to the dark side, we have cookies
  48. file-templates ; auto-snippets for empty files
  49. fold ; (nigh) universal code folding
  50. format
  51. ;;god ; run Emacs commands without modifier keys
  52. ;;lispy ; vim for lisp, for people who don't like vim
  53. ;;multiple-cursors ; editing in many places at once
  54. ;;objed ; text object editing for the innocent
  55. ;;parinfer ; turn lisp into python, sort of
  56. ;;rotate-text ; cycle region at point between text candidates
  57. snippets ; my elves. They type so I don't have to
  58. ;;word-wrap ; soft wrapping with language-aware indent
  59. :emacs
  60. (dired +ranger +icons) ; making dired pretty [functional]
  61. electric ; smarter, keyword-based electric-indent
  62. (ibuffer +icons) ; interactive buffer management
  63. (undo +tree) ; persistent, smarter undo for your inevitable mistakes
  64. vc ; version-control and Emacs, sitting in a tree
  65. :term
  66. eshell ; the elisp shell that works everywhere
  67. shell ; simple shell REPL for Emacs
  68. (:if (not IS-WINDOWS) vterm) ; the best terminal emulation in Emacs
  69. :checkers
  70. (syntax +childframe) ; tasing you for every semicolon you forget
  71. (:if (not IS-WINDOWS) (spell +aspell +everywhere))
  72. (:if IS-WINDOWS (spell +hunspell +everywhere))
  73. grammar ; tasing grammar mistake every you make
  74. :tools
  75. ;;ansible
  76. biblio
  77. ;;debugger ; FIXME stepping through code, to help you add bugs
  78. ;;direnv
  79. (docker +lsp)
  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 +dictionary) ; navigate your code and its documentation
  85. (lsp + peek)
  86. (magit +forge) ; a git porcelain for Emacs
  87. ;;make ; run make tasks from Emacs
  88. ;;pass ; password manager for nerds
  89. (:if (not IS-WINDOWS) 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. ;; PRIVATE
  97. (:if (not IS-WINDOWS) tree-sitter)
  98. :os
  99. (:if IS-MAC macos) ; improve compatibility with macOS
  100. tty ; improve the terminal Emacs experience
  101. :lang
  102. ;;agda ; types of types of types of types...
  103. (cc +lsp) ; C/C++/Obj-C madness
  104. (clojure +lsp) ; 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 ; all(hope(abandon(ye(who(enter(here))))))
  127. (julia +lsp) ; a better, faster MATLAB
  128. ;;kotlin ; a better, slicker Java(Script)
  129. (latex +latexmk +lsp) ; 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 +noter +pretty +roam) ; organize your plain life in plain text
  139. ;;php ; perl's insecure younger brother
  140. ;;plantuml ; diagrams for confusing people more
  141. ;;purescript ; javascript, but functional
  142. (python +poetry +lsp) ; beautiful is better than ugly
  143. ;;qt ; the 'cutest' gui framework ever
  144. ;;racket ; a DSL for DSLs
  145. ;;raku ; the artist formerly known as perl6
  146. ;;rest ; Emacs as a REST client
  147. ;;rst ; ReST in peace
  148. ;;(ruby +rails) ; 1.step {|i| p "Ruby is #{i.even? ? 'love' : 'life'}"}
  149. (rust +lsp) ; Fe2O3.unwrap().unwrap().unwrap().unwrap()
  150. ;;scala ; java, but good
  151. ;;scheme ; a fully conniving family of lisps
  152. (sh +lsp) ; she sells {ba,z,fi}sh shells on the C xor
  153. ;;sml
  154. ;;solidity ; do you need a blockchain? No.
  155. ;;swift ; who asked for emoji variables?
  156. ;;terra ; Earth and Moon in alignment for performance.
  157. (web +lsp) ; the tubes
  158. (yaml +lsp) ; JSON, but readable
  159. :email
  160. ;;(mu4e +gmail)
  161. ;;notmuch
  162. ;;(wanderlust +gmail)
  163. :app
  164. ;;calendar
  165. ;;irc ; how neckbeards socialize
  166. ;;(rss +org) ; emacs as an RSS reader
  167. ;;twitter ; twitter client https://twitter.com/vnought
  168. :config
  169. literate
  170. (default +bindings +smartparens))