mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-03 12:27:26 -05:00
Add fill-column-indicator for text-mode
This commit is contained in:
1
Cask
1
Cask
@ -18,6 +18,7 @@
|
|||||||
|
|
||||||
;; UI --- core/core-ui.el
|
;; UI --- core/core-ui.el
|
||||||
(depends-on "nlinum")
|
(depends-on "nlinum")
|
||||||
|
(depends-on "fill-column-indicator")
|
||||||
(depends-on "spaceline" :git "https://github.com/TheBB/spaceline")
|
(depends-on "spaceline" :git "https://github.com/TheBB/spaceline")
|
||||||
|
|
||||||
;; Evil --- core/core-evil.el
|
;; Evil --- core/core-evil.el
|
||||||
|
@ -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
|
(use-package nlinum ; line numbers
|
||||||
:disabled t
|
:disabled t
|
||||||
:defer t
|
:defer t
|
||||||
|
Reference in New Issue
Block a user