feat(emacs/lean-setting.el): add lean-rule-color custom-var
This commit is contained in:
parent
b6b40bb4ab
commit
209ecfd792
3 changed files with 8 additions and 0 deletions
|
@ -47,5 +47,6 @@ Put the following elisp code on your emacs setup:
|
||||||
;; lean customization
|
;; lean customization
|
||||||
(customize-set-variable 'lean-show-rule-column-method 'vline)
|
(customize-set-variable 'lean-show-rule-column-method 'vline)
|
||||||
(customize-set-variable 'lean-rule-column 100)
|
(customize-set-variable 'lean-rule-column 100)
|
||||||
|
(customize-set-variable 'lean-rule-color "#ff0000")
|
||||||
(customize-set-variable 'lean-delete-trailing-whitespace t)
|
(customize-set-variable 'lean-delete-trailing-whitespace t)
|
||||||
```
|
```
|
||||||
|
|
|
@ -83,6 +83,7 @@
|
||||||
(cl-case lean-show-rule-column-method
|
(cl-case lean-show-rule-column-method
|
||||||
('vline (require 'fill-column-indicator)
|
('vline (require 'fill-column-indicator)
|
||||||
(setq fci-rule-column lean-rule-column)
|
(setq fci-rule-column lean-rule-column)
|
||||||
|
(setq fci-rule-color lean-rule-color)
|
||||||
(add-hook 'lean-mode-hook 'fci-mode))))
|
(add-hook 'lean-mode-hook 'fci-mode))))
|
||||||
(if lean-delete-trailing-whitespace
|
(if lean-delete-trailing-whitespace
|
||||||
(progn (require 'whitespace-cleanup-mode)
|
(progn (require 'whitespace-cleanup-mode)
|
||||||
|
|
|
@ -44,6 +44,12 @@ written."
|
||||||
(const :tag "Unlimited" nil))
|
(const :tag "Unlimited" nil))
|
||||||
:type 'int)
|
:type 'int)
|
||||||
|
|
||||||
|
(defcustom lean-rule-color "#cccccc"
|
||||||
|
"Color used to draw the fill-column rule"
|
||||||
|
:group 'fill-column-indicator
|
||||||
|
:tag "Fill-column rule color"
|
||||||
|
:type 'color)
|
||||||
|
|
||||||
(defcustom lean-show-rule-column-method nil
|
(defcustom lean-show-rule-column-method nil
|
||||||
"If enabled, it highlights column"
|
"If enabled, it highlights column"
|
||||||
:group 'lean
|
:group 'lean
|
||||||
|
|
Loading…
Reference in a new issue