Added a few things

This commit is contained in:
qorg11 2020-06-07 15:10:54 +02:00
parent c2d605fbfa
commit 85ea567644
No known key found for this signature in database
GPG key ID: 343FC20A4ACA62B9

View file

@ -46,7 +46,16 @@
(package-install 'use-package)) (package-install 'use-package))
#+END_SRC #+END_SRC
** Generic packages
Here I install some packages that don't need configuration.
#+BEGIN_SRC emacs-lisp
(use-package markdown-mode
:ensure t)
(use-package web-mode
:ensure t)
(use-package magit
:ensure t)
#+END_SRC
* Autoindentation * Autoindentation
C-c n for indent-buffer. I don't use the rest. C-c n for indent-buffer. I don't use the rest.
#+BEGIN_SRC emacs-lisp #+BEGIN_SRC emacs-lisp