.emacs.d/site-lisp/oni.el
This commit is contained in:
parent
d027e71839
commit
e2ed387df1
1 changed files with 6 additions and 0 deletions
|
@ -402,6 +402,12 @@ When dealing with braces, add another line and indent that too."
|
|||
(rainbow-delimiters-mode)
|
||||
(setq fci-rule-column 80))
|
||||
|
||||
(defun oni:pretty-control-l-function (win)
|
||||
"Just make a string of either `fci-rule-colum' or `fill-column'
|
||||
length -1. Use the `-' character. WIN is ignored."
|
||||
(make-string
|
||||
(1- (if (boundp 'fci-rule-column) fci-rule-column fill-column)) ?-))
|
||||
|
||||
(defun oni:prog-mode-func ()
|
||||
"Function for `prog-mode-hook'."
|
||||
(rainbow-delimiters-mode)
|
||||
|
|
Loading…
Reference in a new issue