2021-04-11 23:53:27 +02:00
|
|
|
;;; -*- lexical-binding: t; -*-
|
2018-03-30 00:10:07 +02:00
|
|
|
|
2023-08-15 16:05:17 +02:00
|
|
|
(defvar native-comp-deferred-compilation-deny-list nil)
|
|
|
|
|
2020-03-26 20:03:25 +01:00
|
|
|
(doom! :completion
|
|
|
|
company ; the ultimate code completion backend
|
2021-11-29 16:52:47 +01:00
|
|
|
(ivy +fuzzy
|
|
|
|
+prescient) ; a search engine for love and life
|
2018-08-31 19:31:14 +02:00
|
|
|
|
|
|
|
:ui
|
2020-03-26 20:03:25 +01:00
|
|
|
;;deft ; notational velocity for Emacs
|
2018-08-31 19:31:14 +02:00
|
|
|
doom ; what makes DOOM look the way it does
|
2020-03-26 20:03:25 +01:00
|
|
|
;doom-dashboard ; a nifty splash screen for Emacs
|
2018-08-31 19:31:14 +02:00
|
|
|
doom-quit ; DOOM quit-message prompts when you quit Emacs
|
2020-03-26 20:03:25 +01:00
|
|
|
;fill-column ; a `fill-column' indicator
|
2018-08-31 19:31:14 +02:00
|
|
|
hl-todo ; highlight TODO/FIXME/NOTE tags
|
2020-03-26 20:03:25 +01:00
|
|
|
;;indent-guides ; highlighted indent columns
|
2019-02-27 20:08:47 +01:00
|
|
|
modeline ; snazzy, Atom-inspired modeline, plus API
|
2018-08-31 19:31:14 +02:00
|
|
|
nav-flash ; blink the current line after jumping
|
2020-03-26 20:03:25 +01:00
|
|
|
;;neotree ; a project drawer, like NERDTree for vim
|
|
|
|
ophints ; highlight the region an operation acts on
|
2018-08-31 19:31:14 +02:00
|
|
|
(popup ; tame sudden yet inevitable temporary windows
|
|
|
|
+all ; catch all popups that start with an asterix
|
|
|
|
+defaults) ; default popup rules
|
2022-01-18 00:04:43 +01:00
|
|
|
;; ligatures ; replace bits of code with pretty symbols
|
2021-12-19 18:31:03 +01:00
|
|
|
;; tabbar ; FIXME an (incomplete) tab bar for Emacs
|
|
|
|
;; treemacs ; a project drawer, like neotree but cooler
|
2018-08-31 19:31:14 +02:00
|
|
|
unicode ; extended unicode support for various languages
|
|
|
|
vc-gutter ; vcs diff in the fringe
|
|
|
|
vi-tilde-fringe ; fringe tildes to mark beyond EOB
|
2023-02-27 16:13:17 +01:00
|
|
|
;;window-select ; visually switch windows
|
2020-03-26 20:03:25 +01:00
|
|
|
workspaces ; tab emulation, persistence & separate workspaces
|
2018-08-31 19:31:14 +02:00
|
|
|
|
|
|
|
:editor
|
2020-03-26 20:03:25 +01:00
|
|
|
(evil +everywhere); come to the dark side, we have cookies
|
|
|
|
file-templates ; auto-snippets for empty files
|
|
|
|
fold ; (nigh) universal code folding
|
|
|
|
;;(format +onsave) ; automated prettiness
|
2023-02-27 16:13:17 +01:00
|
|
|
;;god ; run Emacs commands without modifier keys
|
2019-02-27 20:08:47 +01:00
|
|
|
;;lispy ; vim for lisp, for people who dont like vim
|
2023-02-27 16:13:17 +01:00
|
|
|
;;multiple-cursors ; editing in many places at once
|
|
|
|
;;objed ; text object editing for the innocent
|
2019-02-27 20:08:47 +01:00
|
|
|
;;parinfer ; turn lisp into python, sort of
|
2023-02-27 16:13:17 +01:00
|
|
|
;;rotate-text ; cycle region at point between text candidates
|
2020-03-26 20:03:25 +01:00
|
|
|
snippets ; my elves. They type so I don't have to
|
2020-12-14 18:53:02 +01:00
|
|
|
word-wrap
|
2018-08-31 19:31:14 +02:00
|
|
|
|
|
|
|
:emacs
|
2023-02-27 16:13:17 +01:00
|
|
|
dired ; making dired pretty [functional]
|
2018-08-31 19:31:14 +02:00
|
|
|
electric ; smarter, keyword-based electric-indent
|
2019-02-27 20:08:47 +01:00
|
|
|
;;eshell ; a consistent, cross-platform shell (WIP)
|
|
|
|
;;term ; terminals in Emacs
|
2020-12-14 18:53:02 +01:00
|
|
|
(undo +tree)
|
2023-02-27 16:13:17 +01:00
|
|
|
vc ; version-control and Emacs, sitting in a tree
|
2018-08-31 19:31:14 +02:00
|
|
|
|
|
|
|
:tools
|
2020-03-26 20:03:25 +01:00
|
|
|
;;ansible
|
|
|
|
;;debugger ; FIXME stepping through code, to help you add bugs
|
|
|
|
;;direnv
|
2018-11-21 18:45:05 +01:00
|
|
|
docker
|
2020-03-26 20:03:25 +01:00
|
|
|
;;editorconfig ; let someone else argue about tabs vs spaces
|
|
|
|
;; ein ; tame Jupyter notebooks with emacs
|
2020-12-14 18:53:02 +01:00
|
|
|
(eval +overlay) ; run code, run (also, repls)
|
2018-08-31 19:31:14 +02:00
|
|
|
gist ; interacting with github gists
|
2020-03-26 20:03:25 +01:00
|
|
|
(lookup ; helps you navigate your code and documentation
|
|
|
|
+docsets) ; ...or in Dash docsets locally
|
2020-06-22 15:18:27 +02:00
|
|
|
lsp
|
2020-03-26 20:03:25 +01:00
|
|
|
;;macos ; MacOS-specific commands
|
|
|
|
magit ; a git porcelain for Emacs
|
2018-08-31 19:31:14 +02:00
|
|
|
make ; run make tasks from Emacs
|
2020-03-26 20:03:25 +01:00
|
|
|
pass ; password manager for nerds
|
2018-08-31 19:31:14 +02:00
|
|
|
pdf ; pdf enhancements
|
2020-03-26 20:03:25 +01:00
|
|
|
;;prodigy ; FIXME managing external services & code builders
|
|
|
|
;;rgb ; creating color strings
|
2019-02-27 20:08:47 +01:00
|
|
|
;;terraform ; infrastructure as code
|
|
|
|
;;tmux ; an API for interacting with tmux
|
2023-02-27 16:13:17 +01:00
|
|
|
tree-sitter ; syntax and parsing, sitting in a tree...
|
2019-02-27 20:08:47 +01:00
|
|
|
;;upload ; map local to remote projects via ssh/ftp
|
|
|
|
;;wakatime
|
2020-03-26 20:03:25 +01:00
|
|
|
;;vterm ; another terminals in Emacs
|
2018-08-31 19:31:14 +02:00
|
|
|
|
2020-05-18 17:31:55 +02:00
|
|
|
:checkers
|
|
|
|
syntax ; tasing you for every semicolon you forget
|
2021-02-24 18:36:36 +01:00
|
|
|
; spell ; tasing you for misspelling mispelling
|
2020-05-18 17:31:55 +02:00
|
|
|
|
2018-08-31 19:31:14 +02:00
|
|
|
:lang
|
2020-03-26 20:03:25 +01:00
|
|
|
agda ; types of types of types of types...
|
2019-02-27 20:08:47 +01:00
|
|
|
;;assembly ; assembly for fun or debugging
|
2020-03-26 20:03:25 +01:00
|
|
|
cc ; C/C++/Obj-C madness
|
2018-08-31 19:31:14 +02:00
|
|
|
clojure ; java with a lisp
|
2020-07-21 06:31:17 +02:00
|
|
|
common-lisp ; if you've seen one lisp, you've seen them all
|
2020-05-18 17:31:55 +02:00
|
|
|
; coq ; proofs-as-programs
|
2019-02-27 20:08:47 +01:00
|
|
|
;;crystal ; ruby at the speed of c
|
|
|
|
;;csharp ; unity, .NET, and mono shenanigans
|
2018-08-31 19:31:14 +02:00
|
|
|
data ; config/data formats
|
|
|
|
erlang ; an elegant language for a more civilized age
|
|
|
|
elixir ; erlang done right
|
2019-02-27 20:08:47 +01:00
|
|
|
;;elm ; care for a cup of TEA?
|
2018-08-31 19:31:14 +02:00
|
|
|
emacs-lisp ; drown in parentheses
|
2019-02-27 20:08:47 +01:00
|
|
|
;;ess ; emacs speaks statistics
|
|
|
|
;;go ; the hipster dialect
|
2020-03-26 20:03:25 +01:00
|
|
|
;; (haskell +intero) ; a language that's lazier than I am
|
|
|
|
haskell ; a language that's lazier than I am
|
2019-02-27 20:08:47 +01:00
|
|
|
;;hy ; readability of scheme w/ speed of python
|
2021-09-23 15:45:35 +02:00
|
|
|
;; idris ;
|
2020-03-26 20:03:25 +01:00
|
|
|
;;(java +meghanada) ; the poster child for carpal tunnel syndrome
|
2018-08-31 19:31:14 +02:00
|
|
|
javascript ; all(hope(abandon(ye(who(enter(here))))))
|
2019-02-27 20:08:47 +01:00
|
|
|
julia ; a better, faster MATLAB
|
2020-03-26 20:03:25 +01:00
|
|
|
;;kotlin ; a better, slicker Java(Script)
|
|
|
|
latex ; writing papers in Emacs has never been so fun
|
2019-02-27 20:08:47 +01:00
|
|
|
;;ledger ; an accounting system in Emacs
|
2020-10-23 17:10:51 +02:00
|
|
|
lua ; one-based indices? one-based indices
|
2018-08-31 19:31:14 +02:00
|
|
|
markdown ; writing docs for people to ignore
|
2019-02-27 20:08:47 +01:00
|
|
|
;;nim ; python + lisp at the speed of c
|
2020-03-26 20:03:25 +01:00
|
|
|
nix ; I hereby declare "nix geht mehr!"
|
2024-02-05 23:22:13 +01:00
|
|
|
ocaml ; an objective camel
|
2018-08-31 19:31:14 +02:00
|
|
|
(org ; organize your plain life in plain text
|
2020-05-18 17:31:55 +02:00
|
|
|
+dragndrop ; drag & drop files/images into org buffers
|
2018-08-31 19:31:14 +02:00
|
|
|
+attach ; custom attachment system
|
|
|
|
+babel ; running code in org
|
|
|
|
+capture ; org-capture in and outside of Emacs
|
|
|
|
+export ; Exporting org to whatever you want
|
2020-05-18 17:31:55 +02:00
|
|
|
;; +habit ; Keep track of your habits
|
2020-03-26 20:03:25 +01:00
|
|
|
+present ; Emacs for presentations
|
2020-09-23 17:12:20 +02:00
|
|
|
+pretty
|
|
|
|
+brain
|
2020-03-26 20:03:25 +01:00
|
|
|
+protocol) ; Support for org-protocol:// links
|
2019-02-27 20:08:47 +01:00
|
|
|
;;perl ; write code no one else can comprehend
|
|
|
|
;;php ; perl's insecure younger brother
|
|
|
|
;;plantuml ; diagrams for confusing people more
|
|
|
|
purescript ; javascript, but functional
|
2020-06-22 15:18:27 +02:00
|
|
|
(python +lsp) ; beautiful is better than ugly
|
2019-02-27 20:08:47 +01:00
|
|
|
;;qt ; the 'cutest' gui framework ever
|
|
|
|
racket ; a DSL for DSLs
|
|
|
|
rest ; Emacs as a REST client
|
|
|
|
;;ruby ; 1.step do {|i| p "Ruby is #{i.even? ? 'love' : 'life'}"}
|
2023-02-27 16:13:17 +01:00
|
|
|
(rust +tree-sitter) ; Fe2O3.unwrap().unwrap().unwrap().unwrap()
|
2019-02-27 20:08:47 +01:00
|
|
|
;;scala ; java, but good
|
|
|
|
(sh +fish) ; she sells (ba|z|fi)sh shells on the C xor
|
|
|
|
;;solidity ; do you need a blockchain? No.
|
|
|
|
;;swift ; who asked for emoji variables?
|
2020-03-26 20:03:25 +01:00
|
|
|
;;terra ; Earth and Moon in alignment for performance.
|
2019-02-27 20:08:47 +01:00
|
|
|
;;web ; the tubes
|
|
|
|
;;vala ; GObjective-C
|
2023-02-27 16:13:17 +01:00
|
|
|
zig
|
2018-08-31 19:31:14 +02:00
|
|
|
|
|
|
|
;; Applications are complex and opinionated modules that transform Emacs
|
|
|
|
;; toward a specific purpose. They may have additional dependencies and
|
|
|
|
;; should be loaded late.
|
|
|
|
:app
|
2020-03-26 20:03:25 +01:00
|
|
|
;;(email +gmail) ; emacs as an email client
|
2018-08-31 19:31:14 +02:00
|
|
|
irc ; how neckbeards socialize
|
2020-03-26 20:03:25 +01:00
|
|
|
;;(rss +org) ; emacs as an RSS reader
|
|
|
|
twitter ; twitter client https://twitter.com/vnought
|
|
|
|
;;(write ; emacs as a word processor (latex + org + markdown)
|
|
|
|
;; +wordnut ; wordnet (wn) search
|
|
|
|
;; +langtool) ; a proofreader (grammar/style check) for Emacs
|
|
|
|
|
|
|
|
:email
|
2020-12-14 18:53:02 +01:00
|
|
|
;; (mu4e +gmail)
|
2020-03-26 20:03:25 +01:00
|
|
|
notmuch
|
2018-08-31 19:31:14 +02:00
|
|
|
|
|
|
|
:collab
|
2020-03-26 20:03:25 +01:00
|
|
|
;;floobits ; peer programming for a price
|
|
|
|
;;impatient-mode ; show off code over HTTP
|
2018-08-31 19:31:14 +02:00
|
|
|
|
|
|
|
:config
|
|
|
|
;; For literate config users. This will tangle+compile a config.org
|
|
|
|
;; literate config in your `doom-private-dir' whenever it changes.
|
2020-03-26 20:03:25 +01:00
|
|
|
;;literate
|
2018-08-31 19:31:14 +02:00
|
|
|
|
2020-03-26 20:03:25 +01:00
|
|
|
;; The default module sets reasonable defaults for Emacs. It also
|
|
|
|
;; provides a Spacemacs-inspired keybinding scheme and a smartparens
|
|
|
|
;; config. Use it as a reference for your own modules.
|
|
|
|
(default +bindings +smartparens))
|