From 79c8dc6072e16294e5b779912bc3e1c429683f6e Mon Sep 17 00:00:00 2001 From: Gergely Polonkai Date: Mon, 7 Nov 2016 16:06:41 +0100 Subject: [PATCH] Install the fill-column-indicator package --- customizations.el | 2 ++ init.el | 5 +++++ 2 files changed, 7 insertions(+) diff --git a/customizations.el b/customizations.el index 06226c6..5c0d502 100644 --- a/customizations.el +++ b/customizations.el @@ -15,6 +15,7 @@ (quote ("a27c00821ccfd5a78b01e4f35dc056706dd9ede09a8b90c6955ae6a390eb1c1e" default))) '(echo-keystrokes 0.1) + '(fill-column 76) '(foreground-color "#5c5cff") '(indent-tabs-mode nil) '(indicate-empty-lines t) @@ -47,6 +48,7 @@ electric-case electric-spacing emamux + fill-column-indicator flycheck flycheck-pkg-config focus diff --git a/init.el b/init.el index cd49926..32ac9b0 100644 --- a/init.el +++ b/init.el @@ -772,6 +772,11 @@ (:map dired-mode-map ("K" . dired-k))) +(use-package fill-column-indicator + :ensure t + :config + (add-hook 'prog-mode-hook 'fci-mode)) + ;; Load my own functions (load "gnu-c-header.el") (load "toggle-window-split.el")