help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Customising display-fill-column-indicator-mode


From: wilnerthomas
Subject: Customising display-fill-column-indicator-mode
Date: Sun, 21 Aug 2022 03:14:08 +0200 (CEST)

Had a go at changing the colour of the line to green, but it is not getting 
changed.

Is there any way to use a bigger width for the indicator line because I find it 
to be too thin.

Finally, using  `add-hook'  with  `lisp-interaction-mode-hook'  did not display 
the indicator.

(defun galaxy-colum ()
  "TODO"

  (let ( (global-colum nil) )

    (if (eq global-colum nil)

(progn
  (add-hook 'prog-mode-hook
    #'display-fill-column-indicator-mode)
  (add-hook 'org-mode-hook
    #'display-fill-column-indicator-mode)
  (add-hook 'text-mode-hook
    #'display-fill-column-indicator-mode)
  (add-hook 'lisp-interaction-mode-hook
    #'display-fill-column-indicator-mode))

      (global-display-fill-column-indicator-mode)) )

  (set-face-foreground 'fill-column-indicator "green"))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]