diff options
| author | jason | 2018-01-10 17:05:37 -0700 |
|---|---|---|
| committer | jason | 2018-01-10 17:05:37 -0700 |
| commit | 27edc86ad25d8252fa97840567a98bec8d5bad75 (patch) | |
| tree | 5b069d183a2346f1238fb79a373db170b18755c7 | |
| parent | c2657006974f5100cac9f5fd29e9986cd7096be9 (diff) | |
| download | dotemacs-27edc86ad25d8252fa97840567a98bec8d5bad75.tar.gz dotemacs-27edc86ad25d8252fa97840567a98bec8d5bad75.zip | |
add helpful package to style help pages
| -rw-r--r-- | config.org | 26 |
1 files changed, 17 insertions, 9 deletions
| @@ -402,20 +402,20 @@ that are in the current project (defined by a .git directory). | |||
| 402 | [[https://github.com/skeeto/elfeed][Elfeed]] is an RSS reader for emacs | 402 | [[https://github.com/skeeto/elfeed][Elfeed]] is an RSS reader for emacs |
| 403 | 403 | ||
| 404 | #+BEGIN_SRC emacs-lisp | 404 | #+BEGIN_SRC emacs-lisp |
| 405 | (use-package elfeed | 405 | ;; (use-package elfeed |
| 406 | :ensure t | 406 | ;; :ensure t |
| 407 | :bind (("<f9> f" . elfeed)) | 407 | ;; :bind (("<f9> f" . elfeed)) |
| 408 | :init | 408 | ;; :init |
| 409 | (setq elfeed-db-directory "~/Shared/elfeeddb")) | 409 | ;; (setq elfeed-db-directory "~/Shared/elfeeddb")) |
| 410 | #+END_SRC | 410 | #+END_SRC |
| 411 | 411 | ||
| 412 | [[https://github.com/algernon/elfeed-goodies][elfeed-goodies]] adds some ui/ux sugar to the elfeed screen | 412 | [[https://github.com/algernon/elfeed-goodies][elfeed-goodies]] adds some ui/ux sugar to the elfeed screen |
| 413 | 413 | ||
| 414 | #+BEGIN_SRC emacs-lisp | 414 | #+BEGIN_SRC emacs-lisp |
| 415 | (use-package elfeed-goodies | 415 | ;; (use-package elfeed-goodies |
| 416 | :ensure t | 416 | ;; :ensure t |
| 417 | :config | 417 | ;; :config |
| 418 | (elfeed-goodies/setup)) | 418 | ;; (elfeed-goodies/setup)) |
| 419 | #+END_SRC | 419 | #+END_SRC |
| 420 | 420 | ||
| 421 | ** fill column indicator | 421 | ** fill column indicator |
| @@ -569,6 +569,14 @@ Installation: | |||
| 569 | 569 | ||
| 570 | (add-hook 'go-mode-hook 'my-golang-setup) | 570 | (add-hook 'go-mode-hook 'my-golang-setup) |
| 571 | #+END_SRC | 571 | #+END_SRC |
| 572 | ** Javascript/JSON | ||
| 573 | #+BEGIN_SRC emacs-lisp | ||
| 574 | (defun my-json-setup () | ||
| 575 | (make-local-variable 'js-indent-level) | ||
| 576 | (setq js-indent-level 2)) | ||
| 577 | (add-hook 'json-mode-hook | ||
| 578 | (my-json-setup)) | ||
| 579 | #+END_SRC | ||
| 572 | * org-mode | 580 | * org-mode |
| 573 | ** Setup | 581 | ** Setup |
| 574 | #+BEGIN_SRC emacs-lisp | 582 | #+BEGIN_SRC emacs-lisp |