chore(editor): fold siren-fci module into siren-display-fill-column module

This commit is contained in:
2020-08-25 01:45:05 +01:00
parent eae42fa67d
commit c21df804ed
2 changed files with 8 additions and 20 deletions

View File

@@ -24,7 +24,14 @@ Optional ARG is passed directly to mode toggle function."
;; Emacs 26.x: Use fill-column-indicator package
(when (version< emacs-version "27.0")
(require 'siren-fci)
(use-package fill-column-indicator
:hook
(prog-mode . fci-mode)
:custom
(fci-handle-line-move-visual nil)
(fci-handle-truncate-lines nil)
(fci-rule-width 1))
(defun siren-display-fill-column (&optional arg)
"Activate or deactivate visual fill column.

View File

@@ -1,19 +0,0 @@
;;; siren-fci.el --- jimeh's Emacs Siren: fill-column-indicator configuration.
;;; Commentary:
;; Basic configuration for fill-column-indicator.
;;; Code:
(use-package fill-column-indicator
:hook
(prog-mode . fci-mode)
:custom
(fci-handle-line-move-visual nil)
(fci-handle-truncate-lines nil)
(fci-rule-width 1))
(provide 'siren-fci)
;;; siren-fci.el ends here