summaryrefslogtreecommitdiff
path: root/.emacs.d/packages.el
diff options
context:
space:
mode:
authorSteph Enders <steph@senders.io>2023-03-31 10:40:22 -0400
committerSteph Enders <steph@senders.io>2023-03-31 10:40:22 -0400
commitcd734d9a27b28ae2ba68ca5acf945c9bc1b94b1d (patch)
tree2bea0749e375968db2d8190287a131c597855312 /.emacs.d/packages.el
parentfc310984a9d11bef8c843a041dc88be4b56e04f1 (diff)
Install lsp packages for IDE support
Now I have an IDE!!! Look at: https://emacs-lsp.github.io/lsp-mode/ for information and such - will contain the necessary out-links to anything else I'll need :)
Diffstat (limited to '.emacs.d/packages.el')
-rw-r--r--.emacs.d/packages.el7
1 files changed, 6 insertions, 1 deletions
diff --git a/.emacs.d/packages.el b/.emacs.d/packages.el
index a625f5b..04b7eea 100644
--- a/.emacs.d/packages.el
+++ b/.emacs.d/packages.el
@@ -1,8 +1,13 @@
+;; file of desired packages
+;; for easier evaluation and reading
(straight-use-package 'org)
(straight-use-package 'elpher)
(straight-use-package 'visual-fill-column)
(straight-use-package 'markdown-mode)
-
+(straight-use-package 'lsp-mode)
+(straight-use-package 'company)
+(straight-use-package 'flycheck)
+(straight-use-package 'yasnippet)
;; custom recipes
(straight-use-package '(moe-theme :host github
:repo "kuanyui/moe-theme.el"