-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinit.el
103 lines (91 loc) · 2.28 KB
/
init.el
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
;;; init.el -*- lexical-binding: t; -*-
;; Copy this file to ~/.doom.d/init.el or ~/.config/doom/init.el ('doom install'
;; will do this for you). The `doom!' block below controls what modules are
;; enabled and in what order they will be loaded. Remember to run 'doom refresh'
;; after modifying it.
;;
;; More information about these modules (and what flags they support) can be
;; found in modules/README.org.
(doom!
:completion
(corfu +icons +orderless +dabbrev)
(vertico +icons)
:ui
doom
doom-dashboard
hl-todo
modeline
nav-flash
(popup +all +defaults)
(treemacs +lsp)
ophints
(:unless (featurep :system 'windows) vc-gutter)
vi-tilde-fringe
window-select
workspaces
:editor
(evil +everywhere)
file-templates
(format +lsp)
multiple-cursors
rotate-text
snippets
word-wrap
:emacs
(dired +icons +dirvish)
electric
(ibuffer +icons)
vc
undo
:term
eshell
vterm
:tools
debugger
direnv
docker
editorconfig
ein
(eval +overlay)
(lookup +dictionary +docsets)
(lsp +peek)
(magit +forge)
pdf
prodigy
tmux
tree-sitter
upload
:checkers
(syntax +icons)
grammar
(spell +everywhere +flyspell
(:cond ((executable-find "enchant-2") +enchant)
((executable-find "hunspell") +hunspell)
((executable-find "aspell") +aspell)))
:lang
(cc +lsp +tree-sitter)
common-lisp
(clojure +lsp)
data
emacs-lisp
(graphql +lsp)
(java +lsp +tree-sitter)
(javascript +lsp +tree-sitter)
(json +lsp +tree-sitter)
(latex +latexmk +lsp)
markdown
(org +dragndrop +gnuplot +hugo +jupyter +noter +pandoc +present +roam2 +pretty)
plantuml
(python +pyenv +lsp +tree-sitter)
qt
rest
(rust +lsp +tree-sitter)
rst
(sh +lsp +tree-sitter +fish +powershell)
(scheme +racket)
(web +lsp +tree-sitter)
(yaml +lsp +tree-sitter)
:app
(rss +org)
:config
(default +smartparens +bindings))