aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--config.org15
1 files changed, 14 insertions, 1 deletions
diff --git a/config.org b/config.org
index 2b07e7a..51b597c 100644
--- a/config.org
+++ b/config.org
@@ -217,7 +217,6 @@ Use [[https://magit.vc/][magit]] to supplement emacs built in version control sy
217 ("C-c v L" . magit-log-buffer-file))) 217 ("C-c v L" . magit-log-buffer-file)))
218#+END_SRC 218#+END_SRC
219 219
220
221* Packages 220* Packages
222** Paradox 221** Paradox
223[[https://github.com/Malabarba/paradox/][Paradox]] is a better emacs package manager. 222[[https://github.com/Malabarba/paradox/][Paradox]] is a better emacs package manager.
@@ -326,6 +325,20 @@ that are in the current project (defined by a .git directory).
326 :config 325 :config
327 (projectile-global-mode)) 326 (projectile-global-mode))
328#+END_SRC 327#+END_SRC
328** fill column indicator
329FCI-mode draws a pretty little line on the right hand side indicating where the
330fill column is.
331
332#+BEGIN_SRC emacs-lisp
333(use-package fill-column-indicator
334 :ensure t
335 :init
336 (setq
337 fci-rule-width 1
338 fci-rule-color "#202020")
339 :config
340 (add-hook 'prog-mode-hook 'fci-mode))
341#+END_SRC
329* Languages 342* Languages
330** Python 343** Python
331Elpy does a great job of supporting Python so I just use that. 344Elpy does a great job of supporting Python so I just use that.