mirror of
https://github.com/jimeh/.emacs.d.git
synced 2026-02-19 13:46:41 +00:00
20 lines
379 B
EmacsLisp
20 lines
379 B
EmacsLisp
;;; 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
|