diff options
author | Aaron LI <aaronly.me@outlook.com> | 2016-06-18 10:36:12 +0800 |
---|---|---|
committer | Aaron LI <aaronly.me@outlook.com> | 2016-06-18 10:57:08 +0800 |
commit | 7dc7a7bf62bc01d7b1ccf1a0708dda353bfc9860 (patch) | |
tree | d558d5a73dfb2f98f8a7ab880a7b16b70ed38687 | |
parent | f6778b1a95fb1240f602ac1ee517462bbfc60615 (diff) | |
download | dotfiles-7dc7a7bf62bc01d7b1ccf1a0708dda353bfc9860.tar.bz2 |
spacemacs: explain the bug of "fci-mode" with "truncate-lines"
-rw-r--r-- | _spacemacs.d/init.el | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/_spacemacs.d/init.el b/_spacemacs.d/init.el index 068add5..a887d0b 100644 --- a/_spacemacs.d/init.el +++ b/_spacemacs.d/init.el @@ -339,19 +339,17 @@ ;; Display tildes in the fringe on empty lines (global-vi-tilde-fringe-mode) ;; - ;; Activate column indicator in most mode, except for `org-mode' + ;; Enable fill column indicator in most modes, except for `org-mode' ;; Credit: https://github.com/syl20bnr/spacemacs/issues/4506 - ;; WARNING/XXX: - ;; 'fci-mode' has issues with 'truncate-lines' and 'company-mode' - ;; * 'fci-mode' will override 'truncate-lines' to 't' - ;; * with 'fci-mode' enabled and 'truncate-lines' set to 'nil', - ;; when the completion triggered, the 'truncate-lines' will be - ;; overridden to 't', which is very annoying. + ;; WARNING: + ;; `fci-mode' has issue with `truncate-lines' + ;; https://github.com/alpaker/Fill-Column-Indicator/issues/26 + ;(setq fci-handle-truncate-lines nil) ;(add-hook 'prog-mode-hook 'turn-on-fci-mode) ;(add-hook 'text-mode-hook 'turn-on-fci-mode) ;(add-hook 'org-mode-hook 'turn-off-fci-mode 'append) ;; - ;; mu4e + ;; mu4e: https://github.com/djcb/mu (push "~/.spacemacs.d/config" load-path) (require 'aly-mu4e-config nil t) ;; |