-
Notifications
You must be signed in to change notification settings - Fork 0
/
packages.el
76 lines (71 loc) · 2.18 KB
/
packages.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
;; -*- no-byte-compile: t; -*-
;; ;; disabled packages
(disable-packages! solaire-mode
osx-trash
realgud
realgud-trepan-ni
ccls
tide
swiper
forge
code-review
anaconda-mode
company-anaconda
lsp-python-ms
lsp-ui ;; Breaks WSL Emacs
pyimport)
;; text
(package! adoc-mode)
(package! tldr)
(package! edit-indirect)
(package! link-hint)
(package! symbol-overlay)
(package! pomm)
(package! org-appear)
(package! caddyfile-mode)
(package! org-cliplink)
(package! org-web-tools)
(package! flycheck-inline)
(package! obsidian)
(package! breadcrumb)
;; Org Roam
(unpin! org-roam)
(package! org-roam-ui)
;; misc
(package! format-all)
(package! keycast)
(package! all-the-icons-ibuffer)
(package! dired-narrow)
(package! git-link)
(package! magit-delta)
(package! citre)
(package! imenu-list)
(package! go-translate)
(package! super-save)
(package! diredfl)
(package! tokei)
(package! hackernews)
(package! calctex :recipe (:host github :repo "johnbcoughlin/calctex"
:files ("*.el" "calctex/*.el" "calctex-contrib/*.el" "org-calctex/*.el" "vendor"))
:pin "67a2e76847a9ea9eff1f8e4eb37607f84b380ebb")
(package! laas :recipe (:local-repo "lisp/LaTeX-auto-activating-snippets"))
(package! auto-sudoedit)
(package! shut-up)
;; programming
(package! bazel-mode :recipe (:host github :repo "bazelbuild/emacs-bazel-mode"))
(package! flycheck-google-cpplint :recipe (:host github :repo "flycheck/flycheck-google-cpplint"))
(package! graphql-mode)
(package! protobuf-mode)
(package! gn-mode)
(package! live-py-mode)
(when (package! lsp-bridge
:recipe (:host github
:repo "manateelazycat/lsp-bridge"
:branch "master"
:files ("*.el" "*.py" "acm" "core" "langserver" "multiserver" "resources")
;; do not perform byte compilation or native compilation for lsp-bridge
:build (:not compile)))
(package! markdown-mode)
(package! yasnippet))
(package! py-isort)
(package! flycheck-rust)