diff options
Diffstat (limited to 'config.org')
| -rw-r--r-- | config.org | 32 |
1 files changed, 32 insertions, 0 deletions
| @@ -325,6 +325,38 @@ that are in the current project (defined by a .git directory). | |||
| 325 | :config | 325 | :config |
| 326 | (projectile-global-mode)) | 326 | (projectile-global-mode)) |
| 327 | #+END_SRC | 327 | #+END_SRC |
| 328 | ** elfeed | ||
| 329 | [[https://github.com/skeeto/elfeed][Elfeed]] is an RSS reader for emacs | ||
| 330 | |||
| 331 | #+BEGIN_SRC emacs-lisp | ||
| 332 | (use-package elfeed | ||
| 333 | :ensure t | ||
| 334 | :bind (("<f9> f" . elfeed)) | ||
| 335 | :init | ||
| 336 | (setq elfeed-db-directory "~/Shared/elfeeddb")) | ||
| 337 | #+END_SRC | ||
| 338 | |||
| 339 | [[https://github.com/remyhonig/elfeed-org][elfeed-org]] allows you to define your list of RSS feeds with an org | ||
| 340 | file instead of an elisp list. | ||
| 341 | |||
| 342 | #+BEGIN_SRC emacs-lisp | ||
| 343 | (use-package elfeed-org | ||
| 344 | :ensure t | ||
| 345 | :init | ||
| 346 | (setq rmh-elfeed-org-files (list "~/Shared/elfeed.org")) | ||
| 347 | :config | ||
| 348 | (elfeed-org)) | ||
| 349 | #+END_SRC | ||
| 350 | |||
| 351 | [[https://github.com/algernon/elfeed-goodies][elfeed-goodies]] adds some ui/ux sugar to the elfeed screen | ||
| 352 | |||
| 353 | #+BEGIN_SRC emacs-lisp | ||
| 354 | (use-package elfeed-goodies | ||
| 355 | :ensure t | ||
| 356 | :config | ||
| 357 | (elfeed-goodies/setup)) | ||
| 358 | #+END_SRC | ||
| 359 | |||
| 328 | ** fill column indicator | 360 | ** fill column indicator |
| 329 | FCI-mode draws a pretty little line on the right hand side indicating where the | 361 | FCI-mode draws a pretty little line on the right hand side indicating where the |
| 330 | fill column is. | 362 | fill column is. |