Added a few things
This commit is contained in:
parent
c2d605fbfa
commit
85ea567644
1 changed files with 10 additions and 1 deletions
11
config.org
11
config.org
|
@ -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
|
||||||
|
|
Loading…
Add table
Reference in a new issue