Add fill-column-indicator for text-mode

This commit is contained in:
Henrik Lissner 2015-09-29 11:36:06 -04:00
parent 5954e4ef9e
commit ae7090a509
2 changed files with 7 additions and 0 deletions

1
Cask
View file

@ -18,6 +18,7 @@
;; UI --- core/core-ui.el
(depends-on "nlinum")
(depends-on "fill-column-indicator")
(depends-on "spaceline" :git "https://github.com/TheBB/spaceline")
;; Evil --- core/core-evil.el

View file

@ -29,6 +29,12 @@
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
(use-package fill-column-indicator
:config
(setq fci-rule-color "#2b303f")
(setq-default fill-column 80)
(add-hook! text-mode 'fci-mode))
(use-package nlinum ; line numbers
:disabled t
:defer t